Remove dumb camel case
parent
4492307499
commit
9fbd3264d1
|
|
@ -5,7 +5,7 @@ paths:
|
||||||
summary: "Fetch a file"
|
summary: "Fetch a file"
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: "#/components/parameters/path"
|
- $ref: "#/components/parameters/path"
|
||||||
- $ref: "#/components/parameters/namespacePath"
|
- $ref: "#/components/parameters/namespace"
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
content:
|
content:
|
||||||
|
|
@ -19,7 +19,7 @@ paths:
|
||||||
summary: "Provide or direct link to a file"
|
summary: "Provide or direct link to a file"
|
||||||
parameters:
|
parameters:
|
||||||
- $ref: "#/components/parameters/path"
|
- $ref: "#/components/parameters/path"
|
||||||
- $ref: "#/components/parameters/namespacePath"
|
- $ref: "#/components/parameters/namespace"
|
||||||
- $ref: "#/components/parameters/direct"
|
- $ref: "#/components/parameters/direct"
|
||||||
requestBody:
|
requestBody:
|
||||||
description: "If ?direct=true, then a direct link to the file, else a multi-part form"
|
description: "If ?direct=true, then a direct link to the file, else a multi-part form"
|
||||||
|
|
@ -41,7 +41,7 @@ components:
|
||||||
path:
|
path:
|
||||||
$ref: "./swagger.yaml#/components/parameters/path"
|
$ref: "./swagger.yaml#/components/parameters/path"
|
||||||
|
|
||||||
namespacePath:
|
namespace:
|
||||||
$ref: "./swagger.yaml#/components/parameters/namespacePath"
|
$ref: "./swagger.yaml#/components/parameters/namespacePath"
|
||||||
|
|
||||||
direct:
|
direct:
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ paths:
|
||||||
$ref: "./swagger-register.yaml#/paths"
|
$ref: "./swagger-register.yaml#/paths"
|
||||||
/port:
|
/port:
|
||||||
$ref: "./swagger-port.yaml#/paths"
|
$ref: "./swagger-port.yaml#/paths"
|
||||||
/__files__/{namespacePath}/{path}:
|
/__files__/{namespace}/{path}:
|
||||||
$ref: "./swagger-files.yaml#/paths"
|
$ref: "./swagger-files.yaml#/paths"
|
||||||
|
|
||||||
components:
|
components:
|
||||||
|
|
@ -42,7 +42,7 @@ components:
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
namespacePath:
|
namespacePath:
|
||||||
name: namespacePath
|
name: namespace
|
||||||
in: path
|
in: path
|
||||||
required: true
|
required: true
|
||||||
schema:
|
schema:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue