Files
directus/packages/spec/specs/paths/auth/sso.yaml
2020-09-21 12:33:19 -03:00

23 lines
530 B
YAML

get:
tags:
- Authentication
operationId: sso
description: List the SSO providers.
responses:
"200":
description: Successful request
content:
application/json:
schema:
type: object
properties:
public:
type: boolean
data:
type: array
example: ["github", "facebook"]
items:
type: string
"401":
$ref: "#/components/responses/UnauthorizedError"