mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
42384763d1
* Label Policy added * save * chore: update docs action * Save * Save * Get colors from DB * Variables inserted * Get images from global directory. * Add tests * Add tests * Corrections from mergerequest * Corrections from mergerequest * Test corrected. * Added colors to all notifications. * Added colors to Corrected text and formatting.all notifications. * Spelling error corrected. * fix: tests * Merge Branch corrected. * Step6 added * Corrections from mergerequest * fix: generate management * Formatted texts. * fix: migrations Co-authored-by: Florian Forster <florian@caos.ch> Co-authored-by: adlerhurst <silvan.reusser@gmail.com> Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
60 lines
1.5 KiB
Go
60 lines
1.5 KiB
Go
package model
|
|
|
|
import (
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
global_model "github.com/caos/zitadel/internal/model"
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
type LabelPolicySearchRequest iam_model.LabelPolicySearchRequest
|
|
type LabelPolicySearchQuery iam_model.LabelPolicySearchQuery
|
|
type LabelPolicySearchKey iam_model.LabelPolicySearchKey
|
|
|
|
func (req LabelPolicySearchRequest) GetLimit() uint64 {
|
|
return req.Limit
|
|
}
|
|
|
|
func (req LabelPolicySearchRequest) GetOffset() uint64 {
|
|
return req.Offset
|
|
}
|
|
|
|
func (req LabelPolicySearchRequest) GetSortingColumn() repository.ColumnKey {
|
|
if req.SortingColumn == iam_model.LabelPolicySearchKeyUnspecified {
|
|
return nil
|
|
}
|
|
return LabelPolicySearchKey(req.SortingColumn)
|
|
}
|
|
|
|
func (req LabelPolicySearchRequest) GetAsc() bool {
|
|
return req.Asc
|
|
}
|
|
|
|
func (req LabelPolicySearchRequest) GetQueries() []repository.SearchQuery {
|
|
result := make([]repository.SearchQuery, len(req.Queries))
|
|
for i, q := range req.Queries {
|
|
result[i] = LabelPolicySearchQuery{Key: q.Key, Value: q.Value, Method: q.Method}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (req LabelPolicySearchQuery) GetKey() repository.ColumnKey {
|
|
return LabelPolicySearchKey(req.Key)
|
|
}
|
|
|
|
func (req LabelPolicySearchQuery) GetMethod() global_model.SearchMethod {
|
|
return req.Method
|
|
}
|
|
|
|
func (req LabelPolicySearchQuery) GetValue() interface{} {
|
|
return req.Value
|
|
}
|
|
|
|
func (key LabelPolicySearchKey) ToColumnName() string {
|
|
switch iam_model.LabelPolicySearchKey(key) {
|
|
case iam_model.LabelPolicySearchKeyAggregateID:
|
|
return LabelPolicyKeyAggregateID
|
|
default:
|
|
return ""
|
|
}
|
|
}
|