added last fixes for dev branch prepartion
This commit is contained in:
@@ -10,6 +10,9 @@ servers:
|
||||
- url: http://localhost:8080/api
|
||||
description: Local development server
|
||||
|
||||
security:
|
||||
- basicAuth: []
|
||||
|
||||
paths:
|
||||
/health:
|
||||
get:
|
||||
@@ -561,9 +564,52 @@ paths:
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/RenewalQueueEntry'
|
||||
type: object
|
||||
properties:
|
||||
success:
|
||||
type: boolean
|
||||
example: true
|
||||
queue:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/RenewalQueueEntry'
|
||||
'401':
|
||||
description: Nicht authentifiziert
|
||||
|
||||
delete:
|
||||
summary: Alle Renewal Queue Einträge löschen
|
||||
description: Löscht alle Einträge aus der Renewal Queue. Erfordert confirm=true Query-Parameter.
|
||||
tags:
|
||||
- Renewal Queue
|
||||
parameters:
|
||||
- name: confirm
|
||||
in: query
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
description: Muss "true" sein, um die Operation auszuführen
|
||||
example: "true"
|
||||
responses:
|
||||
'200':
|
||||
description: Alle Renewal Queue Einträge erfolgreich gelöscht
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
success:
|
||||
type: boolean
|
||||
example: true
|
||||
message:
|
||||
type: string
|
||||
example: "Alle Renewal Queue-Einträge erfolgreich gelöscht"
|
||||
deletedCount:
|
||||
type: integer
|
||||
example: 42
|
||||
'400':
|
||||
description: Bestätigung erforderlich
|
||||
'401':
|
||||
description: Nicht authentifiziert
|
||||
|
||||
/renewal-queue/test/create:
|
||||
post:
|
||||
@@ -1766,6 +1812,7 @@ components:
|
||||
example: 5
|
||||
|
||||
securitySchemes:
|
||||
{}:
|
||||
basicAuth:
|
||||
type: http
|
||||
scheme: none
|
||||
scheme: basic
|
||||
description: Basic HTTP Authentication
|
||||
|
||||
Reference in New Issue
Block a user