feat: handle instanceID in projections (#3442)

* feat: handle instanceID in projections

* rename functions

* fix key lock

* fix import
This commit is contained in:
Livio Amstutz
2022-04-19 08:26:12 +02:00
committed by GitHub
parent c25d853820
commit 1305c14e49
120 changed files with 2078 additions and 1209 deletions

View File

@@ -35,6 +35,7 @@ const (
ExternalIDPSearchKeyUserID
ExternalIDPSearchKeyIdpConfigID
ExternalIDPSearchKeyResourceOwner
ExternalIDPSearchKeyInstanceID
)
type ExternalIDPSearchQuery struct {

View File

@@ -1,8 +1,9 @@
package model
import (
"github.com/caos/zitadel/internal/domain"
"time"
"github.com/caos/zitadel/internal/domain"
)
type NotifyUser struct {
@@ -41,6 +42,7 @@ const (
NotifyUserSearchKeyUnspecified NotifyUserSearchKey = iota
NotifyUserSearchKeyUserID
NotifyUserSearchKeyResourceOwner
NotifyUserSearchKeyInstanceID
)
type NotifyUserSearchQuery struct {

View File

@@ -46,6 +46,7 @@ const (
UserSessionSearchKeyUserID
UserSessionSearchKeyState
UserSessionSearchKeyResourceOwner
UserSessionSearchKeyInstanceID
)
type UserSessionSearchQuery struct {