feat: auth self-registration config + gql grouping
This commit is contained in:
12
client/graph/admin/auth/auth-mutation-save-strategies.gql
Normal file
12
client/graph/admin/auth/auth-mutation-save-strategies.gql
Normal file
@@ -0,0 +1,12 @@
|
||||
mutation($locale: String!, $autoUpdate: Boolean!, $namespacing: Boolean!, $namespaces: [String]!) {
|
||||
localization {
|
||||
updateLocale(locale: $locale, autoUpdate: $autoUpdate, namespacing: $namespacing, namespaces: $namespaces) {
|
||||
responseResult {
|
||||
succeeded
|
||||
errorCode
|
||||
slug
|
||||
message
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
18
client/graph/admin/auth/auth-query-strategies.gql
Normal file
18
client/graph/admin/auth/auth-query-strategies.gql
Normal file
@@ -0,0 +1,18 @@
|
||||
query {
|
||||
authentication {
|
||||
strategies(orderBy: "title ASC") {
|
||||
isEnabled
|
||||
key
|
||||
props
|
||||
title
|
||||
useForm
|
||||
config {
|
||||
key
|
||||
value
|
||||
}
|
||||
selfRegistration
|
||||
domainWhitelist
|
||||
autoEnrollGroups
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user