mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
db1d8f4efe
* feat: oidc config * fix: oidc configurations * feat: oidc idp config * feat: add oidc config test * fix: tests * fix: tests * feat: translate new events * feat: idp eventstore * feat: idp eventstore * fix: tests * feat: command side idp * feat: query side idp * feat: idp config on org * fix: tests * feat: authz idp on org * feat: org idps * feat: login policy * feat: login policy * feat: login policy * feat: add idp func on login policy * feat: add validation to loginpolicy and idp provider * feat: add default login policy * feat: login policy on org * feat: login policy on org * fix: id config handlers * fix: id config handlers * fix: create idp on org * fix: create idp on org * fix: not existing idp config * fix: default login policy * fix: add login policy on org * fix: idp provider search on org * fix: test * fix: remove idp on org * fix: test * fix: test * fix: remove admin idp * fix: logo src as byte * fix: migration * fix: tests * Update internal/iam/repository/eventsourcing/iam.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/iam_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/iam_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/org/repository/eventsourcing/org_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * Update internal/iam/repository/eventsourcing/model/login_policy_test.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * fix: pr comments * fix: tests * Update types.go * fix: merge request changes * fix: reduce optimization Co-authored-by: Silvan <silvan.reusser@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
51 lines
933 B
Go
51 lines
933 B
Go
package setup
|
|
|
|
type IAMSetUp struct {
|
|
GlobalOrg string
|
|
IAMProject string
|
|
DefaultLoginPolicy LoginPolicy
|
|
Orgs []Org
|
|
Owners []string
|
|
}
|
|
|
|
type LoginPolicy struct {
|
|
AllowRegister bool
|
|
AllowUsernamePassword bool
|
|
AllowExternalIdp bool
|
|
}
|
|
|
|
type User struct {
|
|
FirstName string
|
|
LastName string
|
|
UserName string
|
|
Email string
|
|
Password string
|
|
}
|
|
|
|
type Org struct {
|
|
Name string
|
|
Domain string
|
|
OrgIamPolicy bool
|
|
Users []User
|
|
Owners []string
|
|
Projects []Project
|
|
}
|
|
|
|
type Project struct {
|
|
Name string
|
|
Users []User
|
|
Members []string
|
|
OIDCApps []OIDCApp
|
|
}
|
|
|
|
type OIDCApp struct {
|
|
Name string
|
|
RedirectUris []string
|
|
ResponseTypes []string
|
|
GrantTypes []string
|
|
ApplicationType string
|
|
AuthMethodType string
|
|
PostLogoutRedirectUris []string
|
|
DevMode bool
|
|
}
|