diff --git a/src/data/choices/Notifications.ts b/src/data/choices/Notifications.ts index 685d353..eb25374 100644 --- a/src/data/choices/Notifications.ts +++ b/src/data/choices/Notifications.ts @@ -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.

"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. +

"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' },