Notifications
LiveTiles Intranet Hub provides the option of implementing custom notifications. They can be accessed from the top navigation bar on desktop, and on mobile from the drawer. As an admin you can configure more than one group of notifications nestled under the notificationGroups
property of header
from the global config. You can read more on the notificationGroups
here in the reference documentation.
This is an example on how to show LiveTiles Reach news items that were published in the channel named Alerts as notifications:
"notificationGroups": [
{
"key": "reach",
"title": {
"de": "LiveTiles Reach Benachrichtigungen",
"en": "LiveTiles Reach alerts",
"fr": "Alertes LiveTiles Reach",
"it": "Avvisi di LiveTiles Reach",
"nl": "LiveTiles Reach waarschuwingen"
},
"dataProvider": {
"version": "v1.0",
"configTypeKey": "dataProvider_reach_news",
"propertyMappings": "propertyMapper_reach_news_minimal",
"connectableKey": "reachAlerts",
"rowLimit": 30,
"fromAllNews": true,
"channelIds": [
"Alerts"
],
"minimalMapping": true
},
"iconName": "condenselogo",
"itemTemplate": {
"configTypeKey": "itemTemplate_simple",
"imageWidth": "2.5rem",
"imageDisplayMode": "Square",
"hideDataProviderSource": true,
"highlightExpression": {
"expression": "item.isRead.value === false"
}
}
}
]