mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
6dcdef0268
* fix: add action v2 execution to features * fix: add action v2 execution to features * fix: add action v2 execution to features * fix: update internal/command/instance_features_model.go Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * fix: merge back main * fix: merge back main * fix: rename feature and service * fix: rename feature and service * fix: review changes * fix: review changes --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
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
|
|
)
|