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
25 lines
503 B
Go
25 lines
503 B
Go
package label
|
|
|
|
import "github.com/caos/zitadel/internal/eventstore/v2"
|
|
|
|
type ReadModel struct {
|
|
eventstore.ReadModel
|
|
|
|
PrimaryColor string
|
|
SecondaryColor string
|
|
}
|
|
|
|
func (rm *ReadModel) Reduce() error {
|
|
for _, event := range rm.Events {
|
|
switch e := event.(type) {
|
|
case *AddedEvent:
|
|
rm.PrimaryColor = e.PrimaryColor
|
|
rm.SecondaryColor = e.SecondaryColor
|
|
case *ChangedEvent:
|
|
rm.PrimaryColor = e.PrimaryColor
|
|
rm.SecondaryColor = e.SecondaryColor
|
|
}
|
|
}
|
|
return rm.ReadModel.Reduce()
|
|
}
|