From 9e2a1da0dfe702a5ac365fb77d1b670cd3d6ebd4 Mon Sep 17 00:00:00 2001 From: Eze Date: Sat, 7 Jun 2025 01:11:29 +0800 Subject: [PATCH] Fixed typo --- site/src/docs/contributing/api/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/docs/contributing/api/index.md b/site/src/docs/contributing/api/index.md index b0b5e871..1dc09725 100644 --- a/site/src/docs/contributing/api/index.md +++ b/site/src/docs/contributing/api/index.md @@ -139,7 +139,7 @@ type Config struct {
Not available Streaming API supposed to provide server-sent events for post updates as well as a site update: -- `GET /api/v1/stream/info?site=site-idd&url=post-url&since=unix_ts_msec` - returns stream (`event: info`) with `PostInfo` records for the site and URL. `since` is optional +- `GET /api/v1/stream/info?site=site-id&url=post-url&since=unix_ts_msec` - returns stream (`event: info`) with `PostInfo` records for the site and URL. `since` is optional - `GET /api/v1/stream/last?site=site-id&since=unix_ts_msec` - returns updates stream (`event: last`) with comments for the site, `since` is optional It was removed in https://github.com/umputun/remark42/pull/826 due to not being used and affecting tests flakiness and could be returned if there will be a developer who would be willing to write frontend support for it.