mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-14 01:45:47 +01:00
fix(writeapi): more tweaks to schema files
This commit is contained in:
@@ -10,7 +10,7 @@ put:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 1
|
||||
example: 2
|
||||
responses:
|
||||
'200':
|
||||
description: Post successfully bookmarked
|
||||
@@ -36,7 +36,7 @@ delete:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 1
|
||||
example: 2
|
||||
responses:
|
||||
'200':
|
||||
description: Post successfully unbookmarked
|
||||
|
||||
@@ -1,29 +1,3 @@
|
||||
put:
|
||||
tags:
|
||||
- posts
|
||||
summary: restore a post
|
||||
description: This operation restores a post.
|
||||
parameters:
|
||||
- in: path
|
||||
name: pid
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 1
|
||||
responses:
|
||||
'200':
|
||||
description: Topic successfully restored
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
status:
|
||||
$ref: ../../../components/schemas/Status.yaml#/Status
|
||||
response:
|
||||
type: object
|
||||
properties: {}
|
||||
delete:
|
||||
tags:
|
||||
- posts
|
||||
@@ -36,10 +10,36 @@ delete:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 1
|
||||
example: 2
|
||||
responses:
|
||||
'200':
|
||||
description: Post successfully deleted
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
type: object
|
||||
properties:
|
||||
status:
|
||||
$ref: ../../../components/schemas/Status.yaml#/Status
|
||||
response:
|
||||
type: object
|
||||
properties: {}
|
||||
put:
|
||||
tags:
|
||||
- posts
|
||||
summary: restore a post
|
||||
description: This operation restores a post.
|
||||
parameters:
|
||||
- in: path
|
||||
name: pid
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 2
|
||||
responses:
|
||||
'200':
|
||||
description: Topic successfully restored
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
|
||||
@@ -10,7 +10,7 @@ put:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 1
|
||||
example: 2
|
||||
requestBody:
|
||||
required: true
|
||||
content:
|
||||
@@ -21,8 +21,7 @@ put:
|
||||
delta:
|
||||
type: number
|
||||
description: Positive integer for upvote, negative integer for downvote (0 to unvote.)
|
||||
example:
|
||||
delta: 1
|
||||
example: 1
|
||||
responses:
|
||||
'200':
|
||||
description: Post successfully upvoted
|
||||
@@ -41,6 +40,14 @@ delete:
|
||||
- posts
|
||||
summary: unvote a post
|
||||
description: This operation removes a pre-cast vote on a post.
|
||||
parameters:
|
||||
- in: path
|
||||
name: pid
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
description: a valid post id
|
||||
example: 2
|
||||
responses:
|
||||
'200':
|
||||
description: Post successfully unvoted
|
||||
|
||||
Reference in New Issue
Block a user