mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-07 08:07:46 +00:00
3025ac577b
* search orgs * org by domain * member spooler * member * get roles * tests * types duration * use default func for renew * correct database * reorder migrations * delete unused consts * move get roles to internal * use prepared org by domain * implement org in other objects * add eventstores
28 lines
805 B
Go
28 lines
805 B
Go
package management
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/management/repository/eventsourcing"
|
|
"github.com/caos/zitadel/pkg/management/api"
|
|
)
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
API api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, 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(config.Repository, systemDefaults, roles)
|
|
logging.Log("MAIN-9uBxp").OnError(err).Panic("unable to start app")
|
|
|
|
api.Start(ctx, config.API, authZ, repo)
|
|
}
|