You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
736 B
YAML
32 lines
736 B
YAML
4 years ago
|
post:
|
||
|
tags:
|
||
|
- admin
|
||
|
summary: Upload site logo
|
||
|
requestBody:
|
||
|
required: true
|
||
|
content:
|
||
|
multipart/form-data:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
files:
|
||
|
type: array
|
||
|
items:
|
||
|
type: string
|
||
|
format: binary
|
||
|
required:
|
||
|
- files
|
||
|
responses:
|
||
|
"200":
|
||
|
description: "Image uploaded"
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
type: object
|
||
|
properties:
|
||
|
name:
|
||
|
type: string
|
||
|
description: The filename
|
||
|
url:
|
||
|
type: string
|
||
|
description: URL of the uploaded image for use client-side
|