Skip to content

Commit

Permalink
Update ClientManagementController.java
Browse files Browse the repository at this point in the history
Signed-off-by: GOKULRAJ136 <[email protected]>
  • Loading branch information
GOKULRAJ136 committed Jan 23, 2024
1 parent 3afd9fc commit 397334e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public ResponseWrapper<ClientDetailResponse> createClient(
}

@RequestMapping(value = "/oidc/client/{client_id}", method = RequestMethod.PUT, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseWrapper<ClientDetailResponse> updateClient(@PathVariable("client_id") String clientId,
public ResponseWrapper<ClientDetailResponse> updateClient(@PathVariable("client_id") String clientId,
@Valid @RequestBody RequestWrapper<ClientDetailUpdateRequest> requestWrapper) throws Exception {
var clientRespDto = clientManagementService.updateOIDCClient(clientId, requestWrapper.getRequest());
var response = new ResponseWrapper<ClientDetailResponse>();
Expand Down

0 comments on commit 397334e

Please sign in to comment.