diff options
author | 2023-02-05 10:50:09 +0100 | |
---|---|---|
committer | 2023-02-05 10:50:09 +0100 | |
commit | 7f3245738d27ee27fa8d1b1f54c67fc11e20de43 (patch) | |
tree | 7f113d3bd2fa79462f894e7ae5a32146a6ff5aba /docs/api | |
parent | [bugfix] Allow instance thumbnail description to be set separately from image... (diff) | |
download | gotosocial-7f3245738d27ee27fa8d1b1f54c67fc11e20de43.tar.xz |
[chore] stub /api/v1/featured_tags endpoint (#1420)
Diffstat (limited to 'docs/api')
-rw-r--r-- | docs/api/swagger.yaml | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index d2d2a08cb..05681733b 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -1373,14 +1373,14 @@ definitions: x-go-package: github.com/superseriousbusiness/gotosocial/internal/api/model instanceV1URLs: properties: - streaming_api: + streaming: description: Websockets address for status and notification streaming. example: wss://example.org type: string - x-go-name: StreamingAPI - title: InstanceV1URLs models instance-relevant URLs for client application consumption. + x-go-name: Streaming + title: InstanceV2URLs models instance-relevant URLs for client application consumption. type: object - x-go-name: InstanceV1URLs + x-go-name: InstanceV2URLs x-go-package: github.com/superseriousbusiness/gotosocial/internal/api/model instanceV2: properties: @@ -4039,6 +4039,35 @@ paths: summary: Get an array of statuses that the requesting account has favourited. tags: - favourites + /api/v1/featured_tags: + get: + description: 'THIS ENDPOINT IS CURRENTLY NOT FULLY IMPLEMENTED: it will always return an empty array.' + operationId: getFeaturedTags + 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 all hashtags that you currently have featured on your profile. + tags: + - featured_tags /api/v1/follow_requests: get: description: Accounts will be sorted in order of follow request date descending (newest first). |