Skip to content

Commit

Permalink
[SELC-5572] feat: add tag support-pnpg to getUserInfoUsingGET (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuraf authored Sep 13, 2024
1 parent 1a273a4 commit 3876496
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user-ms/src/main/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@
},
"/users/{id}" : {
"get" : {
"tags" : [ "User", "external-v2", "support" ],
"tags" : [ "User", "external-v2", "support", "support-pnpg" ],
"summary" : "Retrieves user given userId and optional ProductId",
"operationId" : "getUserInfoUsingGET",
"parameters" : [ {
Expand Down
1 change: 1 addition & 0 deletions apps/user-ms/src/main/docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ paths:
- User
- external-v2
- support
- support-pnpg
summary: Retrieves user given userId and optional ProductId
operationId: getUserInfoUsingGET
parameters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public Uni<List<String>> getUsersEmailByInstitutionAndProduct(@NotNull @QueryPar
@Tag(name = "User")
@Tag(name = "external-v2")
@Tag(name = "support")
@Tag(name = "support-pnpg")
public Uni<UserResponse> getUserInfo(@PathParam(value = "id") String userId,
@QueryParam(value = "institutionId") String institutionId,
@QueryParam(value = "productId") String productId) {
Expand Down

0 comments on commit 3876496

Please sign in to comment.