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.
231 lines
9.8 KiB
YAML
231 lines
9.8 KiB
YAML
get:
|
|
tags:
|
|
- admin
|
|
summary: Get flag data
|
|
responses:
|
|
"200":
|
|
description: ""
|
|
content:
|
|
application/json:
|
|
schema:
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
allCategories:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
bgColor:
|
|
type: string
|
|
cid:
|
|
type: number
|
|
color:
|
|
type: string
|
|
disabled:
|
|
type: number
|
|
disabledClass:
|
|
type: boolean
|
|
icon:
|
|
type: string
|
|
imageClass:
|
|
type: string
|
|
level:
|
|
type: string
|
|
link:
|
|
type: string
|
|
name:
|
|
type: string
|
|
parentCid:
|
|
type: number
|
|
slug:
|
|
type: string
|
|
categories:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
cid:
|
|
type: number
|
|
description: A category identifier
|
|
name:
|
|
type: string
|
|
level:
|
|
type: string
|
|
icon:
|
|
type: string
|
|
parentCid:
|
|
type: number
|
|
description: The category identifier for the category that is the immediate
|
|
ancestor of the current category
|
|
color:
|
|
type: string
|
|
bgColor:
|
|
type: string
|
|
selected:
|
|
type: boolean
|
|
imageClass:
|
|
type: string
|
|
required:
|
|
- bgColor
|
|
- cid
|
|
- color
|
|
- icon
|
|
- imageClass
|
|
- level
|
|
- name
|
|
- parentCid
|
|
allCategoriesUrl:
|
|
type: string
|
|
selectedCategory:
|
|
type: object
|
|
properties:
|
|
icon:
|
|
type: string
|
|
name:
|
|
type: string
|
|
bgColor:
|
|
type: string
|
|
nullable: true
|
|
selectedCids:
|
|
type: array
|
|
items:
|
|
type: number
|
|
posts:
|
|
type: array
|
|
items:
|
|
allOf:
|
|
- type: object
|
|
properties:
|
|
id:
|
|
type: string
|
|
uid:
|
|
type: number
|
|
description: A user identifier
|
|
type:
|
|
type: string
|
|
data:
|
|
type: object
|
|
properties:
|
|
title:
|
|
type: string
|
|
content:
|
|
type: string
|
|
thumb:
|
|
type: string
|
|
cid:
|
|
oneOf:
|
|
- type: number
|
|
- type: string
|
|
tags:
|
|
type: array
|
|
items: {}
|
|
uid:
|
|
type: number
|
|
description: A user identifier
|
|
req:
|
|
type: object
|
|
properties:
|
|
uid:
|
|
type: number
|
|
description: A user identifier
|
|
ip:
|
|
type: string
|
|
host:
|
|
type: string
|
|
protocol:
|
|
type: string
|
|
secure:
|
|
type: boolean
|
|
url:
|
|
type: string
|
|
path:
|
|
type: string
|
|
headers:
|
|
type: object
|
|
properties:
|
|
x-real-ip:
|
|
type: string
|
|
x-forwarded-for:
|
|
type: string
|
|
x-forwarded-proto:
|
|
type: string
|
|
host:
|
|
type: string
|
|
x-nginx-proxy:
|
|
type: string
|
|
connection:
|
|
type: string
|
|
accept:
|
|
type: string
|
|
user-agent:
|
|
type: string
|
|
sec-fetch-site:
|
|
type: string
|
|
sec-fetch-mode:
|
|
type: string
|
|
referer:
|
|
type: string
|
|
accept-encoding:
|
|
type: string
|
|
accept-language:
|
|
type: string
|
|
cookie:
|
|
type: string
|
|
timestamp:
|
|
type: number
|
|
fromQueue:
|
|
type: boolean
|
|
timestampISO:
|
|
type: string
|
|
description: An ISO 8601 formatted date string (complementing `timestamp`)
|
|
rawContent:
|
|
type: string
|
|
tid:
|
|
type: number
|
|
description: A topic identifier
|
|
toPid:
|
|
nullable: true
|
|
user:
|
|
type: object
|
|
properties:
|
|
username:
|
|
type: string
|
|
description: A friendly name for a given user account
|
|
userslug:
|
|
type: string
|
|
description: An URL-safe variant of the username (i.e. lower-cased, spaces
|
|
removed, etc.)
|
|
picture:
|
|
nullable: true
|
|
type: string
|
|
uid:
|
|
type: number
|
|
description: A user identifier
|
|
icon:text:
|
|
type: string
|
|
description: A single-letter representation of a username. This is used in the
|
|
auto-generated icon given to users without
|
|
an avatar
|
|
icon:bgColor:
|
|
type: string
|
|
description: A six-character hexadecimal colour code assigned to the user. This
|
|
value is used in conjunction with
|
|
`icon:text` for the user's auto-generated
|
|
icon
|
|
example: "#f44336"
|
|
topic:
|
|
type: object
|
|
properties:
|
|
cid:
|
|
type: number
|
|
title:
|
|
type: string
|
|
titleRaw:
|
|
type: string
|
|
- $ref: ../components/schemas/CategoryObject.yaml#/CategoryObject
|
|
- $ref: ../components/schemas/Pagination.yaml#/Pagination
|
|
- $ref: ../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
|
|
- $ref: ../components/schemas/CommonProps.yaml#/CommonProps |