Files to uuids only

This commit is contained in:
breel
2020-08-26 20:31:08 -06:00
parent c85465accf
commit bb9b91eef5
7 changed files with 58 additions and 56 deletions

View File

@@ -0,0 +1,32 @@
paths:
summary: "CRUD operations for namespace scoped hosted files"
get:
tags:
- files
parameters:
- $ref: "#/components/parameters/token"
- $ref: "#/components/parameters/path"
put:
tags:
- files
parameters:
- $ref: "#/components/parameters/token"
- $ref: "#/components/parameters/path"
requestBody:
$ref: "#/components/schemas/requestForm"
delete:
tags:
- files
parameters:
- $ref: "#/components/parameters/token"
- $ref: "#/components/parameters/path"
components:
parameters:
token:
$ref: "../swagger.yaml#/components/parameters/token"
path:
$ref: "../swagger.yaml#/components/parameters/path"
schemas:
requestForm:
$ref: "../swagger.yaml#/components/schemas/requestForm"