Skip to content

Commit

Permalink
add external-v2 tag on getUserGroupById API
Browse files Browse the repository at this point in the history
  • Loading branch information
giulia-tremolada committed Nov 21, 2024
1 parent e26d959 commit 7cc4a85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user-group-ms/app/src/main/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
},
"/v1/user-groups/{id}" : {
"get" : {
"tags" : [ "UserGroup" ],
"tags" : [ "UserGroup", "external-v2" ],
"summary" : "getUserGroup",
"description" : "Service to get a specific UserGroup entity",
"operationId" : "getUserGroupUsingGET",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ public void addMemberToUserGroup(@ApiParam("${swagger.user-group.model.id}")
}


@Tag(name = "UserGroup")
@Tag(name = "external-v2")
@GetMapping(value = "/{id}")
@ResponseStatus(HttpStatus.OK)
@ApiOperation(value = "", notes = "${swagger.user-group.groups.api.getUserGroup}")
Expand Down

0 comments on commit 7cc4a85

Please sign in to comment.