refactor: global namespace + admin pages UI
This commit is contained in:
23
server/graph/schemas/authentication.graphql
Normal file
23
server/graph/schemas/authentication.graphql
Normal file
@@ -0,0 +1,23 @@
|
||||
extend type Query {
|
||||
authentication: AuthenticationQuery
|
||||
}
|
||||
|
||||
extend type Mutation {
|
||||
authentication: AuthenticationMutation
|
||||
}
|
||||
|
||||
type AuthenticationQuery {
|
||||
providers: [AuthenticationProvider]
|
||||
}
|
||||
|
||||
type AuthenticationMutation
|
||||
|
||||
type AuthenticationProvider {
|
||||
isEnabled: Boolean!
|
||||
key: String!
|
||||
props: [String]
|
||||
title: String!
|
||||
useForm: Boolean!
|
||||
icon: String
|
||||
config: String
|
||||
}
|
Reference in New Issue
Block a user