mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
cea2567e22
* add/register human command done * validations * crypto * move clientid * keys * fix: clientID * remove v2 package * tests * tests running * revert old code * instance domain from ctx * chore: rename zitadel app ids * comments * fix: test
50 lines
1.0 KiB
Go
50 lines
1.0 KiB
Go
package domain
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type Project struct {
|
|
models.ObjectRoot
|
|
|
|
State ProjectState
|
|
Name string
|
|
ProjectRoleAssertion bool
|
|
ProjectRoleCheck bool
|
|
HasProjectCheck bool
|
|
PrivateLabelingSetting PrivateLabelingSetting
|
|
}
|
|
|
|
type ProjectState int32
|
|
|
|
const (
|
|
ProjectStateUnspecified ProjectState = iota
|
|
ProjectStateActive
|
|
ProjectStateInactive
|
|
ProjectStateRemoved
|
|
|
|
projectStateMax
|
|
)
|
|
|
|
func (s ProjectState) Valid() bool {
|
|
return s > ProjectStateUnspecified && s < projectStateMax
|
|
}
|
|
|
|
type PrivateLabelingSetting int32
|
|
|
|
const (
|
|
PrivateLabelingSettingUnspecified PrivateLabelingSetting = iota
|
|
PrivateLabelingSettingEnforceProjectResourceOwnerPolicy
|
|
PrivateLabelingSettingAllowLoginUserResourceOwnerPolicy
|
|
|
|
privateLabelingSettingMax
|
|
)
|
|
|
|
func (s PrivateLabelingSetting) Valid() bool {
|
|
return s >= PrivateLabelingSettingUnspecified && s < privateLabelingSettingMax
|
|
}
|
|
|
|
func (o *Project) IsValid() bool {
|
|
return o.Name != ""
|
|
}
|