Skip to content

Commit

Permalink
OP-20787-Gate changes for gate api adding id param (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanthopsmx authored Jul 21, 2023
1 parent ce5d6c2 commit 0cb2cb4
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 @@ -51,9 +51,10 @@ class OpsmxSsdController {
@RequestParam(value = "stage", required = false) String stage,
@RequestParam(value = "policy", required = false) String policy,
@RequestParam(value = "policyId", required = false) Integer policyId,
@RequestParam(value = "id", required = false) Integer id,
@RequestBody(required = false) Object data) {

return opsMxSsdService.postSsdServiceResponse(version, type, stage, policy, policyId,data)
return opsMxSsdService.postSsdServiceResponse(version, type, stage, policy, policyId,id,data)
}

@ApiOperation(value = "Endpoint for ssd rest services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ interface OpsmxSsdService {
@Query("stage") String stage,
@Query("policy") String policy,
@Query("policyId") Integer policyId,
@Query("id") Integer id,
@Body Object data)

@POST("/ssdservice/{version}/{type}/{source}")
Expand Down

0 comments on commit 0cb2cb4

Please sign in to comment.