diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2023-02-28 20:01:09 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-28 20:01:09 +1100 | 
| commit | a3454908263f872d53bbcf2eeb598bfc5db57ce2 (patch) | |
| tree | a674ccdc5b7003aae9f10b34329b79a2f108116e /api | |
| parent | f68e5cf9572c78dca784585e3b4c8ff38312400a (diff) | |
feat(server): handle head method (#5003)
This implements some HEAD method handlers for various static resources and the /api/health endpoint.
Diffstat (limited to 'api')
| -rw-r--r-- | api/openapi.yml | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/api/openapi.yml b/api/openapi.yml index 6b8debfa8..1ed9e32c1 100644 --- a/api/openapi.yml +++ b/api/openapi.yml @@ -76,6 +76,14 @@ paths:                schema:                  $ref: '#/components/schemas/handlers.configuration.PasswordPolicyConfigurationBody'    /api/health: +    head: +      tags: +        - State +      summary: Application Health +      description: The health check endpoint provides information about the health of Authelia. +      responses: +        "200": +          description: Successful Operation      get:        tags:          - State  | 
