Skip to content

Commit

Permalink
PIN-4571 BKE - add PRODUCER_ALLOWED_ORIGINS
Browse files Browse the repository at this point in the history
  • Loading branch information
nttdata-rtorsoli committed Feb 20, 2024
1 parent 18f32ce commit 58da13a
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ package object utils {
val ORGANIZATION_EXTERNAL_ID_ORIGIN: String = "organizationExternalIdOrigin"
val ORGANIZATION_EXTERNAL_ID_VALUE: String = "organizationExternalIdValue"

val IPA: String = "IPA"
val ANAC: String = "ANAC"
val IVASS: String = "IVASS"
val TENANT_ALLOWED_ORIGINS: Set[String] = Set(IPA, ANAC, IVASS)
val IPA: String = "IPA"
val ANAC: String = "ANAC"
val IVASS: String = "IVASS"
val TENANT_ALLOWED_ORIGINS: Set[String] = Set(IPA, ANAC, IVASS)
val PRODUCER_ALLOWED_ORIGINS: Set[String] = Set(IPA)

val OTHER_LANGUAGES: Seq[Language] = Seq(Language("en-EN"))
val DEFAULT_LANGUAGE: Language = Language("it-IT")
Expand Down

0 comments on commit 58da13a

Please sign in to comment.