mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
19 lines
522 B
Go
19 lines
522 B
Go
package model
|
|
|
|
import es_models "github.com/zitadel/zitadel/internal/eventstore/v1/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
|
|
}
|