docs: Add full Swagger JSDoc coverage

This commit is contained in:
Maksim Eltyshev
2025-09-08 16:20:27 +02:00
parent e6b4c33542
commit 5ad3134519
128 changed files with 7610 additions and 0 deletions

View File

@@ -3,6 +3,46 @@
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
/**
* @swagger
* /api/access-tokens/revoke-pending-token:
* post:
* summary: Revoke pending token
* description: Revokes a pending authentication token and cancels the authentication flow.
* tags:
* - Access Tokens
* requestBody:
* required: true
* content:
* application/json:
* schema:
* type: object
* required:
* - pendingToken
* properties:
* pendingToken:
* type: string
* maxLength: 1024
* description: Pending token to revoke
* example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ4...
* responses:
* 200:
* description: Pending token revoked successfully
* content:
* application/json:
* schema:
* type: object
* properties:
* item:
* type: null
* description: No data returned
* example: null
* 400:
* $ref: '#/components/responses/ValidationError'
* 404:
* $ref: '#/components/responses/NotFound'
*/
const Errors = {
PENDING_TOKEN_NOT_FOUND: {
pendingTokenNotFound: 'Pending token not found',