mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-09 08:07:37 +01:00
* refactor: wholesale UI/data refactor of world to display in feed-like format * fix: openapi schema * fix: remove console log * fix: restrict 'generatedTitle' from being passed-in via topics API * fix(deps): bumping themes for world refactor support * fix: /world title and description update * fix: missing handleIgnoreWatch in world client side js
54 lines
1.8 KiB
YAML
54 lines
1.8 KiB
YAML
get:
|
|
tags:
|
|
- topics
|
|
summary: Get external topics
|
|
description: Returns a list of external topics known to the local instance
|
|
parameters:
|
|
- name: filter
|
|
in: path
|
|
required: true
|
|
schema:
|
|
type: string
|
|
example: all
|
|
responses:
|
|
"200":
|
|
description: An array of topic objects sorted by timestamp.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
allOf:
|
|
- $ref: ../components/schemas/CategoryObject.yaml#/CategoryObject
|
|
- type: object
|
|
properties:
|
|
tagWhitelist:
|
|
type: array
|
|
items:
|
|
type: string
|
|
posts:
|
|
$ref: ../components/schemas/PostsObject.yaml#/PostsObject
|
|
showThumbs:
|
|
type: boolean
|
|
showTopicTools:
|
|
type: boolean
|
|
showSelect:
|
|
type: boolean
|
|
isWatched:
|
|
type: boolean
|
|
isTracked:
|
|
type: boolean
|
|
isNotWatched:
|
|
type: boolean
|
|
isIgnored:
|
|
type: boolean
|
|
hasFollowers:
|
|
type: boolean
|
|
nullable: true
|
|
title:
|
|
type: string
|
|
categories:
|
|
type: array
|
|
items:
|
|
$ref: ../components/schemas/CategoryObject.yaml#/CategoryObject
|
|
- $ref: ../components/schemas/Pagination.yaml#/Pagination
|
|
- $ref: ../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
|
|
- $ref: ../components/schemas/CommonProps.yaml#/CommonProps |