forked from Deuxfleurs/garage
convert showsecretkey from bool to enum
This commit is contained in:
parent
4f473f43c9
commit
2d37e7fa39
1 changed files with 6 additions and 3 deletions
|
@ -382,9 +382,12 @@ paths:
|
||||||
- name: showSecretKey
|
- name: showSecretKey
|
||||||
in: query
|
in: query
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: string
|
||||||
default: false
|
default: "false"
|
||||||
example: true
|
enum:
|
||||||
|
- "true"
|
||||||
|
- "false"
|
||||||
|
example: "true"
|
||||||
required: false
|
required: false
|
||||||
description: "Wether or not the secret key should be returned in the response"
|
description: "Wether or not the secret key should be returned in the response"
|
||||||
responses:
|
responses:
|
||||||
|
|
Loading…
Reference in a new issue