mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
d8e42744b4
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
50 lines
925 B
Go
50 lines
925 B
Go
package domain
|
|
|
|
import es_models "github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
|
|
type ProjectGrant struct {
|
|
es_models.ObjectRoot
|
|
|
|
GrantID string
|
|
GrantedOrgID string
|
|
State ProjectGrantState
|
|
RoleKeys []string
|
|
}
|
|
|
|
type ProjectGrantIDs struct {
|
|
ProjectID string
|
|
GrantID string
|
|
}
|
|
|
|
type ProjectGrantState int32
|
|
|
|
const (
|
|
ProjectGrantStateUnspecified ProjectGrantState = iota
|
|
ProjectGrantStateActive
|
|
ProjectGrantStateInactive
|
|
ProjectGrantStateRemoved
|
|
)
|
|
|
|
func (p *ProjectGrant) IsValid() bool {
|
|
return p.GrantedOrgID != ""
|
|
}
|
|
|
|
func GetRemovedRoles(existingRoles, newRoles []string) []string {
|
|
removed := make([]string, 0)
|
|
for _, role := range existingRoles {
|
|
if !containsKey(newRoles, role) {
|
|
removed = append(removed, role)
|
|
}
|
|
}
|
|
return removed
|
|
}
|
|
|
|
func containsKey(roles []string, key string) bool {
|
|
for _, role := range roles {
|
|
if role == key {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|