mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
3e1204524e
* fix: multiple setup steps * fix: test set up started * fix: possible nil pointers in setup * fix: validate executed step
28 lines
737 B
Go
28 lines
737 B
Go
package management
|
|
|
|
import (
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
"github.com/caos/zitadel/pkg/grpc/management"
|
|
)
|
|
|
|
func iamFromModel(iam *iam_model.IAM) *management.Iam {
|
|
return &management.Iam{
|
|
IamProjectId: iam.IAMProjectID,
|
|
GlobalOrgId: iam.GlobalOrgID,
|
|
SetUpDone: iamSetupStepFromModel(iam.SetUpDone),
|
|
SetUpStarted: iamSetupStepFromModel(iam.SetUpStarted),
|
|
}
|
|
}
|
|
|
|
func iamSetupStepFromModel(step iam_model.Step) management.IamSetupStep {
|
|
switch step {
|
|
case iam_model.Step1:
|
|
return management.IamSetupStep_iam_setup_step_1
|
|
//TODO: label policy
|
|
// case iam_model.Step2:
|
|
// return management.IamSetupStep_iam_setup_step_2
|
|
default:
|
|
return management.IamSetupStep_iam_setup_step_UNDEFINED
|
|
}
|
|
}
|