mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
22 lines
346 B
Go
22 lines
346 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 (
|
||
|
POLICYSTATE_ACTIVE PolicyState = iota
|
||
|
POLICYSTATE_REMOVED
|
||
|
)
|