fix idp mappers

This commit is contained in:
adlerhurst
2020-11-30 10:41:10 +01:00
parent d494da67be
commit cf1df99a10
8 changed files with 43 additions and 22 deletions

View File

@@ -9,6 +9,10 @@ import (
"github.com/caos/zitadel/internal/eventstore/v2/repository"
)
const (
ConfigAddedEventType eventstore.EventType = "oidc.config.added"
)
type ConfigAddedEvent struct {
eventstore.BaseEvent

View File

@@ -11,6 +11,10 @@ import (
"github.com/caos/zitadel/internal/eventstore/v2/repository"
)
const (
ConfigChangedEventType eventstore.EventType = "oidc.config.changed"
)
type ConfigChangedEvent struct {
eventstore.BaseEvent `json:"-"`