mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
28 lines
684 B
Go
28 lines
684 B
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/command/preparation"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/repository/instance"
|
|
)
|
|
|
|
func AddPasswordAgePolicy(
|
|
a *instance.Aggregate,
|
|
expireWarnDays,
|
|
maxAgeDays uint64,
|
|
) preparation.Validation {
|
|
return func() (preparation.CreateCommands, error) {
|
|
return func(ctx context.Context, filter preparation.FilterToQueryReducer) ([]eventstore.Command, error) {
|
|
//TODO: check if already exists
|
|
return []eventstore.Command{
|
|
instance.NewPasswordAgePolicyAddedEvent(ctx, &a.Aggregate,
|
|
expireWarnDays,
|
|
maxAgeDays,
|
|
),
|
|
}, nil
|
|
}, nil
|
|
}
|
|
}
|