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 467925ca9..39bd6bd61 100644 --- a/swagger.json +++ b/swagger.json @@ -1061,6 +1061,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", @@ -2817,6 +2853,12 @@ "coordinateFormat": { "type": "string" }, + "openIdEnabled": { + "type": "boolean" + }, + "openIdForce": { + "type": "boolean" + }, "attributes": { "type": "object", "properties": {} @@ -3529,4 +3571,4 @@ } } } -}
\ No newline at end of file +} |