Files
NodeBB/public/openapi/components/schemas/admin/blocklists.yaml
Julian Lam 4b7be68d1b feat: Third-party blocklists (#14115)
* feat: third-party blocklists

* docs: openapi routes for blocklist routes

* fix: handle null blocklists check
2026-03-25 11:31:50 -04:00

14 lines
315 B
YAML

BlocklistObject:
type: object
properties:
url:
type: string
description: The blocklist URL
example: https://example.org/blocklist
count:
type: number
description: The number of blocked domains on the list
BlocklistArray:
type: array
items:
$ref: '#/BlocklistObject'