mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:37:31 +00:00
feat(login): use default org for login without provided org context (#6625)
* start feature flags * base feature events on domain const * setup default features * allow setting feature in system api * allow setting feature in admin api * set settings in login based on feature * fix rebasing * unit tests * i18n * update policy after domain discovery * some changes from review * check feature and value type * check feature and value type
This commit is contained in:
28
internal/domain/feature.go
Normal file
28
internal/domain/feature.go
Normal file
@@ -0,0 +1,28 @@
|
||||
//go:generate enumer -type Feature
|
||||
|
||||
package domain
|
||||
|
||||
type Feature int
|
||||
|
||||
func (f Feature) Type() FeatureType {
|
||||
switch f {
|
||||
case FeatureUnspecified:
|
||||
return FeatureTypeUnspecified
|
||||
case FeatureLoginDefaultOrg:
|
||||
return FeatureTypeBoolean
|
||||
default:
|
||||
return FeatureTypeUnspecified
|
||||
}
|
||||
}
|
||||
|
||||
const (
|
||||
FeatureTypeUnspecified FeatureType = iota
|
||||
FeatureTypeBoolean
|
||||
)
|
||||
|
||||
type FeatureType int
|
||||
|
||||
const (
|
||||
FeatureUnspecified Feature = iota
|
||||
FeatureLoginDefaultOrg
|
||||
)
|
Reference in New Issue
Block a user