diff options
Diffstat (limited to 'swagger.json')
-rw-r--r-- | swagger.json | 44 |
1 files changed, 43 insertions, 1 deletions
diff --git a/swagger.json b/swagger.json index 6c1e21d28..cbdc9effd 100644 --- a/swagger.json +++ b/swagger.json @@ -1013,6 +1013,42 @@ } } }, + "/session/openid/auth": { + "get": { + "summary": "Fetch Session information", + "tags": [ + "Session" + ], + "parameters": [ + { + } + ], + "responses": { + "303": { + "description": "Redirect to OpenID Connect identity provider", + "content": { } + } + } + } + }, + "/session/openid/callback": { + "get": { + "summary": "OpenID Callback", + "tags": [ + "Session" + ], + "parameters": [ + { + } + ], + "responses": { + "303": { + "description": "Successful authentication, redirect to homepage", + "content": { } + } + } + } + }, "/users": { "get": { "summary": "Fetch a list of Users", @@ -2769,6 +2805,12 @@ "coordinateFormat": { "type": "string" }, + "openIdEnabled": { + "type": "boolean" + }, + "openIdForce": { + "type": "boolean" + }, "attributes": { "type": "object", "properties": {} @@ -3481,4 +3523,4 @@ } } } -}
\ No newline at end of file +} |