mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
27 lines
413 B
Go
27 lines
413 B
Go
|
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
|
||
|
)
|