Is it possible to create a notification with activation in the future?
Yes, in this case, explicitly pass a value for active_dt_from
in the insert
.
How to see the latest notifications?
The bell
button next to the nickname at the top right of the Totum window.
Is it possible to use html in a notification?
Yes, notifications support html
if in the notification code you specifically call linkToDataHtml.
If you use linkToDataText — then no.
Is it possible to make a link to the table inside the cycle, for example, to allow the user to go directly to the order?
Yes. Construct it through str
. This path needs to be passed as a link in the html
notification:
```totum
=: linkToDataHTML(title: $#title; html: $replace)
url: str`"https://" + $#nh + "/TREE_NUMBER/CYCLE_TABLE_ID/" + $#cycle_id + "/TABLE_ID"`
replace: textByTemplate(text: $html; data: json["url":$url]
)
```html:html
```
What is the interval of checking the notifications?
Depends on the setting in System tables
—> Main
—> Settings and cron
—> Settings
—> periodicity
.
How can the code disable unnecessary user notification?
You need to either delete the row with the notification from notification
or, if you want it to remain in the list of notifications, set active
to false
.