You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -521,6 +522,20 @@ notifications.Slack().Message("hello from stackup, test 123").Send()
521
522
notifications.Slack().Message("hello from stackup, test 456").To($SLACK_CHANNEL_1).Send()
522
523
```
523
524
525
+
### Integration: Desktop Notifications
526
+
527
+
`StackUp`includes an integration for displaying desktop notifications. To configure the integration, see the [Desktop Notifications](#configuration-settings-notifications-desktop) section of the [Configuration: Settings](#configuration-settings) documentation.
528
+
529
+
Notifications are sent using javascript:
530
+
531
+
```js
532
+
// display a desktop notification
533
+
notifications.Desktop().Message("hello from stackup").Send()
534
+
535
+
// optionally provide a notification title
536
+
notifications.Desktop().Message("hello from stackup", "some title").Send()
537
+
```
538
+
524
539
## Scripting
525
540
526
541
Many of the fields in a `Task` can be defined using javascript. To specify an expression to be evaluated, wrap the content in double braces: `{{ env("HOME") }}`.
0 commit comments