Skip to content

Commit

Permalink
Update Notification description to include HTTP streaming
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimvh committed May 24, 2024
1 parent 7fc1732 commit 7f59798
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/data/choices/Notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ export const NOTIFICATIONS = {
description: `Which methods can be used to be notified of changes to resources.
These are based on the latest Solid Notifications specification.
</p><p>"Legacy WebSockets" is an implementation of the deprecated Solid WebSockets API 0.1
and allows users to receive notifications for resources they do not have access to.`,
and allows users to receive notifications for resources they do not have access to.
</p><p>"All" includes all supported notification channels.
This currently includes WebSockets, WebHooks and Streaming HTTP.`,
options: [
{ value: 'all', label: 'WebSockets & WebHooks' },
{ value: 'all', label: 'All' },
{ value: 'websockets', label: 'WebSockets' },
{ value: 'webhooks', label: 'WebHooks' },
{ value: 'streaming-http', label: 'Streaming HTTP' },
Expand Down

0 comments on commit 7f59798

Please sign in to comment.