mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
16 lines
229 B
Go
16 lines
229 B
Go
|
package domain
|
||
|
|
||
|
type PolicyState int32
|
||
|
|
||
|
const (
|
||
|
PolicyStateUnspecified PolicyState = iota
|
||
|
PolicyStateActive
|
||
|
PolicyStateRemoved
|
||
|
|
||
|
policyStateCount
|
||
|
)
|
||
|
|
||
|
func (f PolicyState) Valid() bool {
|
||
|
return f >= 0 && f < policyStateCount
|
||
|
}
|