mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-01 14:13:16 -06:00
[chore] stub /api/v1/accounts/{id}/featured_tags endpoint
This commit is contained in:
parent
301543616b
commit
d355e8b01b
3 changed files with 108 additions and 0 deletions
|
|
@ -3630,6 +3630,35 @@ paths:
|
|||
summary: Block account with id.
|
||||
tags:
|
||||
- accounts
|
||||
/api/v1/accounts/{id}/featured_tags:
|
||||
get:
|
||||
description: 'THIS ENDPOINT IS CURRENTLY NOT FULLY IMPLEMENTED: it will always return an empty array.'
|
||||
operationId: accountsFeaturedTags
|
||||
produces:
|
||||
- application/json
|
||||
responses:
|
||||
"200":
|
||||
description: ""
|
||||
schema:
|
||||
items:
|
||||
type: object
|
||||
type: array
|
||||
"400":
|
||||
description: bad request
|
||||
"401":
|
||||
description: unauthorized
|
||||
"404":
|
||||
description: not found
|
||||
"406":
|
||||
description: not acceptable
|
||||
"500":
|
||||
description: internal server error
|
||||
security:
|
||||
- OAuth2 Bearer:
|
||||
- read:accounts
|
||||
summary: Get an array of a user's featured tags.
|
||||
tags:
|
||||
- accounts
|
||||
/api/v1/accounts/{id}/follow:
|
||||
post:
|
||||
consumes:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue