mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
13 lines
187 B
Go
13 lines
187 B
Go
|
package domain
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/eventstore/models"
|
||
|
)
|
||
|
|
||
|
type OrgIAMPolicy struct {
|
||
|
models.ObjectRoot
|
||
|
|
||
|
UserLoginMustBeDomain bool
|
||
|
Default bool
|
||
|
}
|