mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-09 00:24:33 +00:00

* fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename iam command side to instance * fix: rename orgiampolicy to domain policy * fix: merge conflicts * fix: protos * fix: md files * implement deprecated org iam policy again Co-authored-by: Livio Amstutz <livio.a@gmail.com>
37 lines
902 B
Go
37 lines
902 B
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
)
|
|
|
|
type Step6 struct {
|
|
DefaultLabelPolicy domain.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 *InstanceWriteModel) ([]eventstore.Command, error) {
|
|
iamAgg := InstanceAggregateFromWriteModel(&iam.WriteModel)
|
|
event, err := c.addDefaultLabelPolicy(ctx, iamAgg, NewInstanceLabelPolicyWriteModel(), &step.DefaultLabelPolicy)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logging.Log("SETUP-ADgd2").Info("default label policy set up")
|
|
return []eventstore.Command{event}, nil
|
|
}
|
|
return c.setup(ctx, step, fn)
|
|
}
|