You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
YAML
58 lines
1.9 KiB
YAML
get:
|
|
tags:
|
|
- authentication
|
|
summary: /api/login
|
|
responses:
|
|
"200":
|
|
description: ""
|
|
content:
|
|
application/json:
|
|
schema:
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
loginFormEntry:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
label:
|
|
type: string
|
|
description: A label for the added block
|
|
html:
|
|
type: string
|
|
description: HTML to render on the login page
|
|
styleName:
|
|
type: string
|
|
description: Custom identifier (value is added to `input[id]` and `label[for]`)
|
|
alternate_logins:
|
|
type: boolean
|
|
authentication:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
name:
|
|
type: string
|
|
url:
|
|
type: string
|
|
callbackURL:
|
|
type: string
|
|
icon:
|
|
type: string
|
|
scope:
|
|
type: string
|
|
prompt:
|
|
type: string
|
|
allowRegistration:
|
|
type: boolean
|
|
allowLoginWith:
|
|
type: string
|
|
title:
|
|
type: string
|
|
allowPasswordReset:
|
|
type: boolean
|
|
allowLocalLogin:
|
|
type: boolean
|
|
- $ref: ../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
|
|
- $ref: ../components/schemas/CommonProps.yaml#/CommonProps |