mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
8dcbbc87ca
* fix: adaot config to commands (and queries) * remove dependency on vv2 in v1 * add queries user to operator * set password for queries on tests * set password for queries on tests * fix config
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
type Step6 struct {
|
|
DefaultLabelPolicy iam_model.LabelPolicy
|
|
}
|
|
|
|
func (s *Step6) Step() domain.Step {
|
|
return domain.Step6
|
|
}
|
|
|
|
func (s *Step6) execute(ctx context.Context, commandSide *Commands) error {
|
|
return commandSide.SetupStep6(ctx, s)
|
|
}
|
|
|
|
func (c *Commands) SetupStep6(ctx context.Context, step *Step6) error {
|
|
fn := func(iam *IAMWriteModel) ([]eventstore.EventPusher, error) {
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
event, err := c.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 c.setup(ctx, step, fn)
|
|
}
|