diff --git a/infra/container_apps/env/dev/terraform.tfvars b/infra/container_apps/env/dev/terraform.tfvars index a4471baf..06b85d6a 100644 --- a/infra/container_apps/env/dev/terraform.tfvars +++ b/infra/container_apps/env/dev/terraform.tfvars @@ -1,5 +1,7 @@ env_short = "d" env = "dev" +suffix_increment = "-002" +cae_name = "cae-002" tags = { CreatedBy = "Terraform" diff --git a/web/src/main/java/it/pagopa/selfcare/mscore/web/controller/InstitutionController.java b/web/src/main/java/it/pagopa/selfcare/mscore/web/controller/InstitutionController.java index efe28e09..c927fe63 100644 --- a/web/src/main/java/it/pagopa/selfcare/mscore/web/controller/InstitutionController.java +++ b/web/src/main/java/it/pagopa/selfcare/mscore/web/controller/InstitutionController.java @@ -408,7 +408,10 @@ public ResponseEntity> retrieveInstitutionGeoTaxonomi * * Code: 200, Message: successful operation, DataType: InstitutionResponse * * Code: 404, Message: GeographicTaxonomies or Institution not found, DataType: Problem */ - @Tags({@Tag(name = "external-v2"), @Tag(name = "Institution")}) + @Tag(name = "external-v2") + @Tag(name = "internal-v1") + @Tag(name = "external-pnpg") + @Tag(name = "Institution") @ResponseStatus(HttpStatus.OK) @ApiOperation(value = "${swagger.mscore.institution}", notes = "${swagger.mscore.institution}") @GetMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE) @@ -472,6 +475,7 @@ public ResponseEntity> getValidInstitutionToOnboard(@ * * Code: 404, Message: Institution or Token or UserBinding not found, DataType: Problem */ @ResponseStatus(HttpStatus.OK) + @Tag(name = "internal-v1") @ApiOperation(value = "${swagger.mscore.institutions.updateCreatedAt}", notes = "${swagger.mscore.institutions.updateCreatedAt}") @PutMapping(value = "/{institutionId}/createdAt", produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity updateCreatedAt(@ApiParam("${swagger.mscore.institutions.model.institutionId}")