mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 20:37:30 +00:00
feat: add attribute to only enable specific themes (#6798)
* feat: enable only specific themes in label policy * feat: enable only specific themes in label policy * feat: enable only specific themes in label policy * feat: enable only specific themes in label policy * add management in console * pass enabledTheme * render login ui based on enabled theme * add in branding / settings service and name consistently * update console to latest proto state * fix console linting * fix linting * cleanup * add translations --------- Co-authored-by: Livio Spring <livio.a@gmail.com> Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
This commit is contained in:
@@ -3,6 +3,7 @@ package management
|
||||
import (
|
||||
"github.com/zitadel/zitadel/internal/domain"
|
||||
mgmt_pb "github.com/zitadel/zitadel/pkg/grpc/management"
|
||||
policy_pb "github.com/zitadel/zitadel/pkg/grpc/policy"
|
||||
)
|
||||
|
||||
func AddLabelPolicyToDomain(p *mgmt_pb.AddCustomLabelPolicyRequest) *domain.LabelPolicy {
|
||||
@@ -17,6 +18,22 @@ func AddLabelPolicyToDomain(p *mgmt_pb.AddCustomLabelPolicyRequest) *domain.Labe
|
||||
FontColorDark: p.FontColorDark,
|
||||
HideLoginNameSuffix: p.HideLoginNameSuffix,
|
||||
DisableWatermark: p.DisableWatermark,
|
||||
ThemeMode: themeModeToDomain(p.ThemeMode),
|
||||
}
|
||||
}
|
||||
|
||||
func themeModeToDomain(theme policy_pb.ThemeMode) domain.LabelPolicyThemeMode {
|
||||
switch theme {
|
||||
case policy_pb.ThemeMode_THEME_MODE_AUTO:
|
||||
return domain.LabelPolicyThemeAuto
|
||||
case policy_pb.ThemeMode_THEME_MODE_DARK:
|
||||
return domain.LabelPolicyThemeDark
|
||||
case policy_pb.ThemeMode_THEME_MODE_LIGHT:
|
||||
return domain.LabelPolicyThemeLight
|
||||
case policy_pb.ThemeMode_THEME_MODE_UNSPECIFIED:
|
||||
return domain.LabelPolicyThemeAuto
|
||||
default:
|
||||
return domain.LabelPolicyThemeAuto
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,5 +49,6 @@ func updateLabelPolicyToDomain(p *mgmt_pb.UpdateCustomLabelPolicyRequest) *domai
|
||||
FontColorDark: p.FontColorDark,
|
||||
HideLoginNameSuffix: p.HideLoginNameSuffix,
|
||||
DisableWatermark: p.DisableWatermark,
|
||||
ThemeMode: themeModeToDomain(p.ThemeMode),
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user