Files
speckle-server/packages/server/modules/auth/graph/schemas/auth.graphql
T
2021-01-03 13:35:53 +02:00

15 lines
234 B
GraphQL

extend type ServerInfo {
"""
The authentication strategies available on this server.
"""
authStrategies: [AuthStrategy]
}
type AuthStrategy {
id: String!,
name: String!,
icon: String!,
url: String!,
color: String
}