mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3cd3a238c2
* fix: all enums same style * fix: rename process to reduce * add some missing enum renaming Co-authored-by: Livio Amstutz <livio.a@gmail.com>
72 lines
1.5 KiB
Go
72 lines
1.5 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/model"
|
|
"time"
|
|
)
|
|
|
|
type UserGrantView struct {
|
|
ID string
|
|
ResourceOwner string
|
|
UserID string
|
|
ProjectID string
|
|
UserName string
|
|
FirstName string
|
|
LastName string
|
|
Email string
|
|
ProjectName string
|
|
OrgName string
|
|
OrgDomain string
|
|
RoleKeys []string
|
|
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
State UserGrantState
|
|
|
|
Sequence uint64
|
|
}
|
|
|
|
type UserGrantSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn UserGrantSearchKey
|
|
Asc bool
|
|
Queries []*UserGrantSearchQuery
|
|
}
|
|
|
|
type UserGrantSearchKey int32
|
|
|
|
const (
|
|
UserGrantSearchKeyUnspecified UserGrantSearchKey = iota
|
|
UserGrantSearchKeyUserID
|
|
UserGrantSearchKeyProjectID
|
|
UserGrantSearchKeyResourceOwner
|
|
UserGrantSearchKeyState
|
|
UserGrantSearchKeyGrantID
|
|
UserGrantSearchKeyOrgName
|
|
UserGrantSearchKeyRoleKey
|
|
)
|
|
|
|
type UserGrantSearchQuery struct {
|
|
Key UserGrantSearchKey
|
|
Method model.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type UserGrantSearchResponse struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*UserGrantView
|
|
}
|
|
|
|
func (r *UserGrantSearchRequest) EnsureLimit(limit uint64) {
|
|
if r.Limit == 0 || r.Limit > limit {
|
|
r.Limit = limit
|
|
}
|
|
}
|
|
|
|
func (r *UserGrantSearchRequest) AppendMyOrgQuery(orgID string) {
|
|
r.Queries = append(r.Queries, &UserGrantSearchQuery{Key: UserGrantSearchKeyResourceOwner, Method: model.SearchMethodEquals, Value: orgID})
|
|
}
|