mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
5b433dcaa3
* feat: login policy * feat: password complexity policy * feat: org iam policy * feat: label policy * feat: add and change policies * feat: second factors * feat: second and multi factors * feat: better naming * feat: better naming
27 lines
512 B
Go
27 lines
512 B
Go
package label
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
)
|
|
|
|
type WriteModel struct {
|
|
eventstore.WriteModel
|
|
|
|
PrimaryColor string
|
|
SecondaryColor string
|
|
}
|
|
|
|
func (wm *WriteModel) Reduce() error {
|
|
for _, event := range wm.Events {
|
|
switch e := event.(type) {
|
|
case *AddedEvent:
|
|
wm.PrimaryColor = e.PrimaryColor
|
|
wm.SecondaryColor = e.SecondaryColor
|
|
case *ChangedEvent:
|
|
wm.PrimaryColor = e.PrimaryColor
|
|
wm.SecondaryColor = e.SecondaryColor
|
|
}
|
|
}
|
|
return wm.WriteModel.Reduce()
|
|
}
|