mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-05-02 01:01:09 +00:00
doc: fix missed Atom feed endpoint
This commit is contained in:
parent
487099474f
commit
5f03a4ca03
1 changed files with 24 additions and 0 deletions
|
@ -336,6 +336,30 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/ApiError'
|
$ref: '#/components/schemas/ApiError'
|
||||||
|
|
||||||
|
/_blah/room/{rid}/feed.atom:
|
||||||
|
get:
|
||||||
|
summary: Get Atom feed of room
|
||||||
|
description: |
|
||||||
|
Get room {rid}'s content in The Atom Syndication Format format. The
|
||||||
|
room must be public. For human and feed reader consumption only.
|
||||||
|
|
||||||
|
More details: <https://validator.w3.org/feed/docs/atom.html>
|
||||||
|
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: The Atom feed.
|
||||||
|
content:
|
||||||
|
application/atom+xml:
|
||||||
|
description: Feed XML.
|
||||||
|
|
||||||
|
404:
|
||||||
|
description: Room does not exist or is private.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/ApiError'
|
||||||
|
|
||||||
|
|
||||||
/_blah/room/{rid}/msg:
|
/_blah/room/{rid}/msg:
|
||||||
get:
|
get:
|
||||||
summary: List messages in a room
|
summary: List messages in a room
|
||||||
|
|
Loading…
Add table
Reference in a new issue