mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
202aae4954
* feat: add mfa to login policy * feat: add mfa to login policy * feat: add mfa to login policy * feat: add mfa to login policy * feat: add mfa to login policy on org * feat: add mfa to login policy on org * feat: append events on policy views * feat: iam login policy mfa definition * feat: login policies on orgs * feat: configured mfas in login process * feat: configured mfas in login process * Update internal/ui/login/static/i18n/en.yaml Co-authored-by: Livio Amstutz <livio.a@gmail.com> * fix: rename software and hardware mfas * fix: pr requests * fix user mfa * fix: test * fix: oidc version * fix: oidc version * fix: proto gen Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Max Peintner <max@caos.ch>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/model"
|
|
)
|
|
|
|
type SecondFactorsSearchRequest struct {
|
|
Queries []*MFASearchQuery
|
|
}
|
|
|
|
type MultiFactorsSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
Asc bool
|
|
Queries []*MFASearchQuery
|
|
}
|
|
|
|
type MFASearchQuery struct {
|
|
Key MFASearchKey
|
|
Method model.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type MFASearchKey int32
|
|
|
|
const (
|
|
MFASearchKeyUnspecified MFASearchKey = iota
|
|
MFASearchKeyAggregateID
|
|
)
|
|
|
|
type SecondFactorsSearchResponse struct {
|
|
TotalResult uint64
|
|
Result []SecondFactorType
|
|
}
|
|
|
|
type MultiFactorsSearchResponse struct {
|
|
TotalResult uint64
|
|
Result []MultiFactorType
|
|
}
|
|
|
|
func (r *SecondFactorsSearchRequest) AppendAggregateIDQuery(aggregateID string) {
|
|
r.Queries = append(r.Queries, &MFASearchQuery{Key: MFASearchKeyAggregateID, Method: model.SearchMethodEquals, Value: aggregateID})
|
|
}
|
|
|
|
func (r *MultiFactorsSearchRequest) AppendAggregateIDQuery(aggregateID string) {
|
|
r.Queries = append(r.Queries, &MFASearchQuery{Key: MFASearchKeyAggregateID, Method: model.SearchMethodEquals, Value: aggregateID})
|
|
}
|