2021-01-04 13:52:13 +00:00
|
|
|
package query
|
|
|
|
|
|
|
|
import (
|
2021-02-23 14:13:04 +00:00
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/repository/iam"
|
|
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
2021-01-04 13:52:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type IAMPasswordAgePolicyReadModel struct {
|
|
|
|
PasswordAgePolicyReadModel
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rm *IAMPasswordAgePolicyReadModel) AppendEvents(events ...eventstore.EventReader) {
|
|
|
|
for _, event := range events {
|
|
|
|
switch e := event.(type) {
|
|
|
|
case *iam.PasswordAgePolicyAddedEvent:
|
|
|
|
rm.PasswordAgePolicyReadModel.AppendEvents(&e.PasswordAgePolicyAddedEvent)
|
|
|
|
case *iam.PasswordAgePolicyChangedEvent:
|
|
|
|
rm.PasswordAgePolicyReadModel.AppendEvents(&e.PasswordAgePolicyChangedEvent)
|
|
|
|
case *policy.PasswordAgePolicyAddedEvent,
|
|
|
|
*policy.PasswordAgePolicyChangedEvent:
|
|
|
|
|
|
|
|
rm.PasswordAgePolicyReadModel.AppendEvents(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|