mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
62b654ea18
* feat: iam members in admin api * feat: add error id in translate error * fix: resolve merge conflicts
30 lines
937 B
Go
30 lines
937 B
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
authz_repo "github.com/caos/zitadel/internal/authz/repository/eventsourcing"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/admin/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
"github.com/caos/zitadel/pkg/admin/api"
|
|
)
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
API api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, authZRepo *authz_repo.EsRepository, authZ auth.Config, systemDefaults sd.SystemDefaults) {
|
|
roles := make([]string, len(authZ.RolePermissionMappings))
|
|
for i, role := range authZ.RolePermissionMappings {
|
|
roles[i] = role.Role
|
|
}
|
|
|
|
repo, err := eventsourcing.Start(ctx, config.Repository, systemDefaults, roles)
|
|
logging.Log("MAIN-9uBxp").OnError(err).Panic("unable to start app")
|
|
|
|
api.Start(ctx, config.API, authZRepo, authZ, systemDefaults, repo)
|
|
}
|