fix: two more routes
parent
cb32e32ae3
commit
9c2de86a6e
@ -0,0 +1,23 @@
|
|||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- admin
|
||||||
|
summary: Get system cache info
|
||||||
|
parameters:
|
||||||
|
- in: query
|
||||||
|
name: name
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
enum: ['post', 'object', 'group', 'local']
|
||||||
|
required: false
|
||||||
|
description: Specify cache to dump if calling `/dump`
|
||||||
|
example: 'post'
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: ""
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties: {}
|
||||||
|
additionalProperties:
|
||||||
|
description: The type of response is dependent on the database used. Please examine the output.
|
@ -0,0 +1,22 @@
|
|||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- authentication
|
||||||
|
summary: Verify an email address
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Email address verified, or confirmation code was incorrect
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
allOf:
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
title:
|
||||||
|
type: string
|
||||||
|
error:
|
||||||
|
type: string
|
||||||
|
description: Translation key for client-side localisation
|
||||||
|
required:
|
||||||
|
- title
|
||||||
|
- $ref: ../../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
|
||||||
|
- $ref: ../../components/schemas/CommonProps.yaml#/CommonProps
|
Loading…
Reference in New Issue