From 556899dbdbf3bb285de71225d156c4891dce23a9 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Fri, 24 May 2024 13:10:20 +0200 Subject: [PATCH] docs: Add HTTP streaming notification option to docs --- config/http/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/http/README.md b/config/http/README.md index caeffc035..be0d7d119 100644 --- a/config/http/README.md +++ b/config/http/README.md @@ -22,12 +22,14 @@ Determines how notifications should be sent out from the server when resources c * *all*: Supports all available notification types of the Solid Notifications protocol [specification](https://solidproject.org/TR/notifications-protocol). - Currently, this includes WebhookChannel2023 and WebSocketChannel2023. + Currently, this includes WebhookChannel2023, WebSocketChannel2023 and StreamingHTTPChannel2023. * *disabled*: No notifications are sent out. * *legacy-websocket*: Follows the legacy Solid WebSocket [specification](https://github.com/solid/solid-spec/blob/master/api-websockets.md). Will be removed in future versions. * *new-old-websockets.json*: Support for both the legacy Solid Websockets and the new WebSocketChannel2023. +* *streaming-http*: Follows the StreamingHTTPChannel2023 + [specification](https://solid.github.io/notifications/streaming-http-channel-2023) draft. * *webhooks*: Follows the WebhookChannel2023 [specification](https://solid.github.io/notifications/webhook-channel-2023) draft. * *websockets*: Follows the WebSocketChannel2023