mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 20:43:39 +00:00
3e1204524e
* fix: multiple setup steps * fix: test set up started * fix: possible nil pointers in setup * fix: validate executed step
31 lines
500 B
Go
31 lines
500 B
Go
package setup
|
|
|
|
//TODO: label policy
|
|
// import (
|
|
// "context"
|
|
|
|
// iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
// )
|
|
|
|
// type Step2 struct {
|
|
// DefaultLabelPolicy LabelPolicy
|
|
|
|
// setup *Setup
|
|
// }
|
|
|
|
// func (s *Step2) isNil() bool {
|
|
// return s == nil
|
|
// }
|
|
|
|
// func (step *Step2) step() iam_model.Step {
|
|
// return iam_model.Step2
|
|
// }
|
|
|
|
// func (step *Step2) init(setup *Setup) {
|
|
// step.setup = setup
|
|
// }
|
|
|
|
// func (step *Step2) execute(ctx context.Context) error {
|
|
// return nil
|
|
// }
|