-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Onboarding an origin SELC institute and sending mail to Admin Op…
…erator
- Loading branch information
1 parent
8d01317
commit 32b2c05
Showing
14 changed files
with
202 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
.../interop/partyprocess/api/converters/partymanagement/DataProtectionOfficerConverter.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package it.pagopa.interop.partyprocess.api.converters.partymanagement | ||
|
||
import it.pagopa.interop.partymanagement.client.model.{DataProtectionOfficer => DependencyDataProtectionOfficer} | ||
import it.pagopa.interop.partyprocess.model.DataProtectionOfficer | ||
|
||
object DataProtectionOfficerConverter { | ||
def dependencyToApi(dataProtectionOfficer: DependencyDataProtectionOfficer): DataProtectionOfficer = | ||
DataProtectionOfficer( | ||
address = dataProtectionOfficer.address, | ||
email = dataProtectionOfficer.email, | ||
pec = dataProtectionOfficer.pec | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...interop/partyprocess/api/converters/partymanagement/PaymentServiceProviderConverter.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package it.pagopa.interop.partyprocess.api.converters.partymanagement | ||
|
||
import it.pagopa.interop.partymanagement.client.model.{PaymentServiceProvider => DependencyPaymentServiceProvider} | ||
import it.pagopa.interop.partyprocess.model.PaymentServiceProvider | ||
|
||
object PaymentServiceProviderConverter { | ||
def dependencyToApi(paymentServiceProvider: DependencyPaymentServiceProvider): PaymentServiceProvider = | ||
PaymentServiceProvider( | ||
abiCode = paymentServiceProvider.abiCode, | ||
businessRegisterNumber = paymentServiceProvider.businessRegisterNumber, | ||
legalRegisterName = paymentServiceProvider.legalRegisterName, | ||
legalRegisterNumber = paymentServiceProvider.legalRegisterNumber, | ||
vatNumberGroup = paymentServiceProvider.vatNumberGroup | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,19 @@ party-process { | |
} | ||
productName = "productName" | ||
} | ||
|
||
onboarding-notification-mail-placeholders { | ||
adminEmail = "[email protected]" | ||
path = "src/test/resources/mail-template-notification.json" | ||
confirm-token { | ||
name = "confirmTokenURL" | ||
placeholder = "selfcare-value" | ||
} | ||
productName = "productName" | ||
requesterName = "requesterName" | ||
requesterSurname = "requesterSurname" | ||
institutionName = "institutionName" | ||
} | ||
} | ||
|
||
services { | ||
|
Oops, something went wrong.