mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
39 lines
742 B
Go
39 lines
742 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type ProjectRole struct {
|
|
models.ObjectRoot
|
|
|
|
Key string
|
|
DisplayName string
|
|
Group string
|
|
}
|
|
|
|
type ProjectRoleState int32
|
|
|
|
const (
|
|
ProjectRoleStateUnspecified ProjectRoleState = iota
|
|
ProjectRoleStateActive
|
|
ProjectRoleStateRemoved
|
|
)
|
|
|
|
func NewProjectRole(projectID, key string) *ProjectRole {
|
|
return &ProjectRole{ObjectRoot: models.ObjectRoot{AggregateID: projectID}, Key: key}
|
|
}
|
|
|
|
func (p *ProjectRole) IsValid() bool {
|
|
return p.AggregateID != "" && p.Key != ""
|
|
}
|
|
|
|
func containsRoleKey(roleKey string, validRoles []string) bool {
|
|
for _, validRole := range validRoles {
|
|
if roleKey == validRole {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|