Skip to content

Commit

Permalink
Updated policyStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkumaropsmx committed May 9, 2022
1 parent 2026b14 commit d748653
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ class OpsmxAuditClientServiceController {
@RequestParam(value = "noOfDays", required = false) Integer noOfDays,
@RequestParam(value = "pageNo",required = false) Integer page,
@RequestParam(value = "size", required = false) Integer size,
@RequestParam(value = "policyStatus",required = false) String policyStatus) {
return opsmxAuditClientService.getAuditClientResponse1(version, type,applicationName,noOfDays,page,size,policyStatus)
@RequestParam(value = "policyStatus",required = false) String policyStatus,
@RequestParam(value = "search", required = false) String search) {
return opsmxAuditClientService.getAuditClientResponse1(version, type,applicationName,noOfDays,page,size,policyStatus,search)
}

@ApiOperation(value = "Endpoint for audit-client rest services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ interface OpsmxAuditClientService {
@Query("noOfDays") Integer noOfDays,
@Query("pageNo") Integer page,
@Query("size") Integer size,
@Query("policyStatus") String policyStatus)
@Query("policyStatus") String policyStatus,
@Query("search") String search)

@GET("/auditclientservice/{version}/{type}/{source}")
Object getDeliveryInsightCharts(@Path('version') String version,
Expand Down

0 comments on commit d748653

Please sign in to comment.