mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
23 lines
530 B
YAML
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"
|