mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
e5731b0d3b
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes * add project * add oidc application * fix app creation * add resourceOwner to writemodels * resource owner * cleanup * global org, iam project and iam member in setup * logs * logs * logs * cleanup * Update internal/v2/command/project.go Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * check project state Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
32 lines
543 B
Go
32 lines
543 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
)
|
|
|
|
type Project struct {
|
|
models.ObjectRoot
|
|
|
|
State ProjectState
|
|
Name string
|
|
Members []*Member
|
|
Roles []*ProjectRole
|
|
//Applications []*Application
|
|
//Grants []*ProjectGrant
|
|
ProjectRoleAssertion bool
|
|
ProjectRoleCheck bool
|
|
}
|
|
|
|
type ProjectState int32
|
|
|
|
const (
|
|
ProjectStateUnspecified ProjectState = iota
|
|
ProjectStateActive
|
|
ProjectStateInactive
|
|
ProjectStateRemoved
|
|
)
|
|
|
|
func (o *Project) IsValid() bool {
|
|
return o.Name != ""
|
|
}
|