mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
16 lines
288 B
Go
16 lines
288 B
Go
package model
|
|
|
|
import es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
|
|
type ProjectRole struct {
|
|
es_models.ObjectRoot
|
|
|
|
Key string
|
|
DisplayName string
|
|
Group string
|
|
}
|
|
|
|
func (p *ProjectRole) IsValid() bool {
|
|
return p.AggregateID != "" && p.Key != ""
|
|
}
|