-
Notifications
You must be signed in to change notification settings - Fork 787
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(shadowbox): remove deprecated access key get method
- Loading branch information
1 parent
1ac9f23
commit 98d6ff5
Showing
1 changed file
with
0 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,42 +189,6 @@ paths: | |
{"id":"1","name":"First","password":"xXxXxX","port":4410,"method":"chacha20-ietf-poly1305","accessUrl":"ss://[email protected]:4410/?outline=1"}, | ||
{"id":"2","name":"SecondWithCustomDataLimit","password":"XxXxXx","port":25424,"method":"chacha20-ietf-poly1305","dataLimit":{"bytes":8589934592},"accessUrl":"ss://[email protected]:25424/?outline=1"}]} | ||
/access-keys/{id}: | ||
get: | ||
description: Get an access key | ||
tags: | ||
- Access Key | ||
parameters: | ||
- name: id | ||
in: path | ||
required: true | ||
description: The id to get the access key | ||
schema: | ||
type: string | ||
responses: | ||
'200': | ||
description: The access key | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "#/components/schemas/AccessKey" | ||
examples: | ||
'0': | ||
value: '{"id":"0","name":"Admin","password":"XxXxXx","port":18162,"method":"chacha20-ietf-poly1305","accessUrl":"ss://[email protected]:18162/?outline=1"}' | ||
'404': | ||
description: Access key inexistent | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
code: | ||
type: string | ||
message: | ||
type: string | ||
examples: | ||
'0': | ||
value: >- | ||
{"code":"NotFoundError","message":"No access key found"} | ||
delete: | ||
description: Deletes an access key | ||
tags: | ||
|