Skip to content

Commit

Permalink
OP-20592 : Added mapping URLs for current and previous deployment APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
sriharshakancharla committed Jun 22, 2023
1 parent dcfa0e9 commit 54d35b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ class OpsmxSsdController {
@PathVariable("source") String source,
@PathVariable("source1") String source1,
@PathVariable("source2") String source2,
@RequestParam(value = "account", required = false) String account,
@RequestParam(value = "appId", required = false) Integer appId,
@RequestParam(value = "image", required = false) String image,
@RequestParam(value = "appName", required = false) String appName,
Expand All @@ -92,7 +93,7 @@ class OpsmxSsdController {
@RequestParam(value = "sortOrder", required = false) String sortOrder,
@RequestParam(value = "search", required = false) String search,
@RequestParam(value = "noOfDays", required = false) Integer noOfDays) {
return opsMxSsdService.getSddResponse4(version, type, source, source1, source2, appId, image, appName, pageNo, pageLimit, sortBy, sortOrder, search, noOfDays)
return opsMxSsdService.getSddResponse4(version, type, source, source1, source2, account, appId, image, appName, pageNo, pageLimit, sortBy, sortOrder, search, noOfDays)
}

@ApiOperation(value = "Endpoint for ssd services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ interface OpsmxSsdService {
@Path('source') String source,
@Path('source1') String source1,
@Path('source2') String source2,
@Query("account") String account,
@Query("appId") Integer appId,
@Query("image") String image,
@Query("appName") String appName,
Expand Down

0 comments on commit 54d35b2

Please sign in to comment.