wikijs-fork/server/graph/schemas/authentication.graphql

98 lines
2.1 KiB
GraphQL
Raw Normal View History

# ===============================================
# AUTHENTICATION
# ===============================================
extend type Query {
authentication: AuthenticationQuery
}
extend type Mutation {
authentication: AuthenticationMutation
}
# -----------------------------------------------
# QUERIES
# -----------------------------------------------
type AuthenticationQuery {
2018-06-04 00:41:29 -04:00
strategies(
isEnabled: Boolean
2018-06-04 00:41:29 -04:00
): [AuthenticationStrategy]
}
# -----------------------------------------------
# MUTATIONS
# -----------------------------------------------
type AuthenticationMutation {
login(
username: String!
password: String!
2018-06-17 11:12:11 -04:00
strategy: String!
2019-02-15 16:36:13 -05:00
): AuthenticationLoginResponse @rateLimit(limit: 5, duration: 60)
loginTFA(
loginToken: String!
securityCode: String!
2019-02-15 16:36:13 -05:00
): DefaultResponse @rateLimit(limit: 5, duration: 60)
register(
email: String!
password: String!
name: String!
): AuthenticationRegisterResponse
2018-06-25 20:55:00 -04:00
updateStrategies(
2019-01-06 22:03:34 -05:00
strategies: [AuthenticationStrategyInput]!
config: AuthenticationConfigInput
2018-10-14 17:38:39 -04:00
): DefaultResponse @auth(requires: ["manage:system"])
}
# -----------------------------------------------
# TYPES
# -----------------------------------------------
2018-06-04 00:41:29 -04:00
type AuthenticationStrategy {
isEnabled: Boolean!
key: String!
props: [String]
title: String!
2018-08-04 17:27:55 -04:00
description: String
useForm: Boolean!
2018-08-04 17:27:55 -04:00
logo: String
color: String
2018-08-04 17:27:55 -04:00
website: String
icon: String
config: [KeyValuePair] @auth(requires: ["manage:system"])
selfRegistration: Boolean!
domainWhitelist: [String]! @auth(requires: ["manage:system"])
autoEnrollGroups: [Int]! @auth(requires: ["manage:system"])
}
type AuthenticationLoginResponse {
responseResult: ResponseStatus
jwt: String
tfaRequired: Boolean
tfaLoginToken: String
}
2018-06-25 20:55:00 -04:00
type AuthenticationRegisterResponse {
responseResult: ResponseStatus
jwt: String
}
2018-06-25 20:55:00 -04:00
input AuthenticationStrategyInput {
isEnabled: Boolean!
key: String!
config: [KeyValuePairInput]
selfRegistration: Boolean!
domainWhitelist: [String]!
autoEnrollGroups: [Int]!
}
2019-01-06 22:03:34 -05:00
input AuthenticationConfigInput {
audience: String!
tokenExpiration: String!
tokenRenewal: String!
}