Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #50

Closed
wants to merge 6 commits into from
Closed

fix #50

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: pagopa-api-config-selfcare-integration
description: Microservice that manages requests from selfcare
type: application
version: 1.82.0
appVersion: 1.10.10
version: 1.85.0
appVersion: 1.10.10-3-fix-iban-list
dependencies:
- name: microservice-chart
version: 2.8.0
Expand Down
2 changes: 1 addition & 1 deletion helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ microservice-chart: &microservice-chart
envSecret: {}
image:
repository: ghcr.io/pagopa/pagopa-api-config-selfcare-integration
tag: "1.10.10"
tag: "1.10.10-3-fix-iban-list"
pullPolicy: Always
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ microservice-chart: &microservice-chart
envSecret: {}
image:
repository: ghcr.io/pagopa/pagopa-api-config-selfcare-integration
tag: "1.10.10"
tag: "1.10.10-3-fix-iban-list"
pullPolicy: Always
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion helm/values-uat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ microservice-chart: &microservice-chart
envSecret: {}
image:
repository: ghcr.io/pagopa/pagopa-api-config-selfcare-integration
tag: "1.10.10"
tag: "1.10.10-3-fix-iban-list"
pullPolicy: Always
livenessProbe:
httpGet:
Expand Down
6 changes: 3 additions & 3 deletions openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "API-Config - SelfCare Integration",
"description": "Spring application exposes APIs for SelfCare",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "1.10.10"
"version": "1.10.10-3-fix-iban-list"
},
"servers": [
{
Expand Down Expand Up @@ -1081,7 +1081,7 @@
}
]
},
"/ibans": {
"/ibans/": {
"post": {
"tags": [
"Ibans"
Expand Down Expand Up @@ -1243,7 +1243,7 @@
"Ibans"
],
"summary": "Get creditor institution ibans list",
"operationId": "getIbans_1",
"operationId": "getIbansList",
"parameters": [
{
"name": "creditorinstitutioncode",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>it.gov.pagopa.api-config</groupId>
<artifactId>selfcareintegration</artifactId>
<version>1.10.10</version>
<version>1.10.10-3-fix-iban-list</version>
<name>API-Config - SelfCare Integration</name>
<description>Spring application exposes APIs for SelfCare</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public IbanController(IbansService ibansService) {
}
)
@PostMapping(
value = "",
value = "/",
produces = {MediaType.APPLICATION_JSON_VALUE}
)
@Cacheable(value = "getIbans")
Expand Down Expand Up @@ -174,7 +174,7 @@ public ResponseEntity<IbansList> getIbans(
@GetMapping(
value = "/{creditorinstitutioncode}/list",
produces = {MediaType.APPLICATION_JSON_VALUE})
public ResponseEntity<IbansListTemp> getIbans(
public ResponseEntity<IbansListTemp> getIbansList(
@Size(max = 50)
@Parameter(
description = "The fiscal code of the Organization.",
Expand Down
Loading