Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions engine/api/swagger-spec/dblab_openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1219,11 +1219,11 @@ paths:
message: "Check your verification token."
x-codegen-request-body-name: body
/admin/ws-auth:
post:
get:
tags:
- Admin
summary: Test source database
operationId: testDBConnection2
summary: WebSocket authentication
operationId: wsAuth
parameters:
- name: Verification-Token
in: header
Expand Down Expand Up @@ -1645,6 +1645,8 @@ components:
type: string
password:
type: string
dbName:
type: string
Clone:
type: object
properties:
Expand All @@ -1654,6 +1656,10 @@ components:
type: string
snapshot:
$ref: '#/components/schemas/Snapshot'
branch:
type: string
revision:
type: integer
protected:
type: boolean
default: false
Expand Down Expand Up @@ -1730,6 +1736,11 @@ components:
default:
db_name:
type: string
extra_conf:
type: object
additionalProperties:
type: string
description: Extra PostgreSQL configuration parameters for the clone
ResetClone:
type: object
properties:
Expand Down
Loading