mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
3cd3a238c2
* fix: all enums same style * fix: rename process to reduce * add some missing enum renaming Co-authored-by: Livio Amstutz <livio.a@gmail.com>
22 lines
344 B
Go
22 lines
344 B
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
)
|
|
|
|
type OrgIamPolicy struct {
|
|
models.ObjectRoot
|
|
|
|
Description string
|
|
State PolicyState
|
|
UserLoginMustBeDomain bool
|
|
Default bool
|
|
}
|
|
|
|
type PolicyState int32
|
|
|
|
const (
|
|
PolicyStateActive PolicyState = iota
|
|
PolicyStateRemoved
|
|
)
|