mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
00fec8830a
* fix: push events instead of aggregates * fix: tests * try without aggregate methods and with aggregate methods * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: change push aggregate to push events * fix: client secret * fix: query eventtypes * fix: query eventtypes * fix: eventstore index * fix: index * fix: merge new eventstore * fix: remove unnecessary todos * fix: remove unnecessary todos Co-authored-by: Fabiennne <fabienne.gerschwiler@gmail.com>
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/eventstore/v2"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
)
|
|
|
|
type Step6 struct {
|
|
DefaultLabelPolicy iam_model.LabelPolicy
|
|
}
|
|
|
|
func (s *Step6) Step() domain.Step {
|
|
return domain.Step6
|
|
}
|
|
|
|
func (s *Step6) execute(ctx context.Context, commandSide *CommandSide) error {
|
|
return commandSide.SetupStep6(ctx, s)
|
|
}
|
|
|
|
func (r *CommandSide) SetupStep6(ctx context.Context, step *Step6) error {
|
|
fn := func(iam *IAMWriteModel) ([]eventstore.EventPusher, error) {
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
event, err := r.addDefaultLabelPolicy(ctx, iamAgg, NewIAMLabelPolicyWriteModel(), &domain.LabelPolicy{
|
|
PrimaryColor: step.DefaultLabelPolicy.PrimaryColor,
|
|
SecondaryColor: step.DefaultLabelPolicy.SecondaryColor,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-ADgd2").Info("default label policy set up")
|
|
return []eventstore.EventPusher{event}, nil
|
|
}
|
|
return r.setup(ctx, step, fn)
|
|
}
|