Skip to content

Commit c8947c9

Browse files
[SELC-7296] feat: added tag support in createDelegation (#94)
1 parent d4e8c7e commit c8947c9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/institution-ms/app/src/main/docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
} ]
158158
},
159159
"post" : {
160-
"tags" : [ "Delegation" ],
160+
"tags" : [ "Delegation", "support" ],
161161
"summary" : "Create an association between institution id and technical partner",
162162
"description" : "Create an association between institution id and technical partner",
163163
"operationId" : "createDelegationUsingPOST",

apps/institution-ms/web/src/main/java/it/pagopa/selfcare/mscore/web/controller/DelegationController.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public DelegationController(DelegationService delegationService,
5050
* * Code: 400, Message: Bad Request, DataType: Problem
5151
* * Code: 409, Message: Conflict, DataType: Problem
5252
*/
53+
@Tags({@Tag(name = "support"), @Tag(name = "Delegation")})
5354
@ResponseStatus(HttpStatus.CREATED)
5455
@ApiOperation(value = "${swagger.mscore.delegation.create}", notes = "${swagger.mscore.delegation.create}")
5556
@PostMapping(produces = MediaType.APPLICATION_JSON_VALUE)

0 commit comments

Comments
 (0)