mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
e5731b0d3b
* add setup steps * refactoring * omitempty * cleanup * begin org * create org * setup org * setup org * merge * fixes * fixes * fixes * add project * add oidc application * fix app creation * add resourceOwner to writemodels * resource owner * cleanup * global org, iam project and iam member in setup * logs * logs * logs * cleanup * Update internal/v2/command/project.go Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * check project state Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
iam_repo "github.com/caos/zitadel/internal/v2/repository/iam"
|
|
)
|
|
|
|
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) (*iam_repo.Aggregate, error) {
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
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 iamAgg, nil
|
|
}
|
|
return r.setup(ctx, step, fn)
|
|
}
|