Files
NodeBB/public/openapi/read/admin/appearance/themes.yaml
Barış Soner Uşaklı 92d72f6745 refactor: remove admin.themes.getInstalled
socket call, and just load the themes in the api call
2026-02-28 12:25:29 -05:00

42 lines
1.2 KiB
YAML

get:
tags:
- admin
summary: Get appearance settings
responses:
"200":
description: ""
content:
application/json:
schema:
allOf:
- type: object
properties:
themes:
type: array
items:
type: object
properties:
name:
type: string
id:
type: string
description:
type: string
screenshot:
type: string
screenshot_url:
type: string
type:
type: string
url:
type: string
baseTheme:
type: string
required:
- name
- id
- description
- type
- url
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps