From fd505d605f3334584fae072dda26ebf35ef6dddd Mon Sep 17 00:00:00 2001 From: sispeo <42068883+fperot74@users.noreply.github.com> Date: Thu, 2 Mar 2023 10:52:03 +0100 Subject: [PATCH] [CLOUDTRUST-4785] Dispatch theme value in 4 specific JSON keys --- configuration/dto.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration/dto.go b/configuration/dto.go index 2a0ef22..cce4aa8 100644 --- a/configuration/dto.go +++ b/configuration/dto.go @@ -45,7 +45,10 @@ type RealmAdminConfiguration struct { Mode *string `json:"mode"` AvailableChecks map[string]bool `json:"available-checks,omitempty"` SelfRegisterEnabled *bool `json:"self_register_enabled"` - Theme *string `json:"theme,omitempty"` + RegisterTheme *string `json:"register_theme,omitempty"` + SseTheme *string `json:"sse_theme,omitempty"` + BoTheme *string `json:"bo_theme,omitempty"` + SignerTheme *string `json:"signer_theme,omitempty"` NeedVerifiedContact *bool `json:"need_verified_contact,omitempty"` ConsentRequiredSocial *bool `json:"consent_required,omitempty"` ConsentRequiredCorporate *bool `json:"consent_required_corp,omitempty"`