Automatic Merge
Этот коммит содержится в:
Pablo Vélez
2026-02-20 02:09:32 -05:00
коммит произвёл GitHub
родитель 21ced4716b
Коммит e1a78d1e91
9 изменённых файлов: 203 добавлений и 23 удалений

Просмотреть файл

@@ -71,7 +71,9 @@ type FeatureFlags struct {
ContentFlagging bool
// Enable mobile SSO SAML code-exchange flow (no tokens in deep links)
// DEPRECATED: Mobile SSO SAML code-exchange flow - disabled by default
// This feature is deprecated and will be removed in a future release.
// Mobile clients should use the direct SSO callback flow with srv parameter verification.
MobileSSOCodeExchange bool
}
@@ -102,7 +104,7 @@ func (f *FeatureFlags) SetDefaults() {
f.CustomProfileAttributes = true
f.AttributeBasedAccessControl = true
f.ContentFlagging = false
f.MobileSSOCodeExchange = true
f.MobileSSOCodeExchange = false
}
// ToMap returns the feature flags as a map[string]string