Skip to content

Commit

Permalink
Feature/sort order (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-opsmx authored Oct 4, 2023
1 parent 742976c commit 09e8523
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,11 @@ class OpsmxSsdController {
@RequestParam(value = "kind", required = false) String kind,
@RequestParam(value = "search", required = false) String search,
@RequestParam(value = "service", required = false) String service,
@RequestParam(value = "sortBy", required = false) String sortBy,
@RequestParam(value = "sortOrder", required = false) String sortOrder,
@RequestParam(value = "id", required = false) String id,
@RequestParam(value = "dbomType", required = false) String dbomType) {
return opsMxSsdService.getSddResponse3(version, type, source, source1,account , appId, image, appName, noOfDays, pageNo, pageLimit, kind, search, service, id, dbomType)
return opsMxSsdService.getSddResponse3(version, type, source, source1,account , appId, image, appName, noOfDays, pageNo, pageLimit, kind, search, service,sortBy,sortOrder, id, dbomType)
}

@ApiOperation(value = "Endpoint for ssd services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ interface OpsmxSsdService {
@Query("kind") String kind,
@Query("search") String search,
@Query("service") String service,
@Query("sortBy") String sortBy,
@Query("sortOrder") String sortOrder,
@Query("id") String id,
@Query("dbomType") String dbomType)

Expand Down

0 comments on commit 09e8523

Please sign in to comment.