mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
19 lines
516 B
Go
19 lines
516 B
Go
|
package model
|
||
|
|
||
|
import es_models "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
|
||
|
type ProjectGrantMember struct {
|
||
|
es_models.ObjectRoot
|
||
|
GrantID string
|
||
|
UserID string
|
||
|
Roles []string
|
||
|
}
|
||
|
|
||
|
func NewProjectGrantMember(projectID, grantID, userID string) *ProjectGrantMember {
|
||
|
return &ProjectGrantMember{ObjectRoot: es_models.ObjectRoot{AggregateID: projectID}, GrantID: grantID, UserID: userID}
|
||
|
}
|
||
|
|
||
|
func (p *ProjectGrantMember) IsValid() bool {
|
||
|
return p.AggregateID != "" && p.UserID != "" && len(p.Roles) != 0
|
||
|
}
|