Skip to content

Commit

Permalink
fix user group tag
Browse files Browse the repository at this point in the history
  • Loading branch information
manuraf committed Jun 10, 2024
1 parent b40a8a7 commit 216fab5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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 @@ -768,7 +768,7 @@
},
"/v1/user-groups" : {
"get" : {
"tags" : [ "external-v2", "support" ],
"tags" : [ "UserGroup", "external-v2", "support" ],
"summary" : "getUserGroups",
"description" : "Service that allows to get a list of UserGroup entities",
"operationId" : "getUserGroupsUsingGET_1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ public UserGroupResource getUserGroup(@ApiParam("${swagger.user-group.model.id}"
}


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

0 comments on commit 216fab5

Please sign in to comment.