For now make the notification bubble action go to notification view

This commit is contained in:
Johannes Zellner
2019-01-10 13:29:59 +01:00
parent 182949d8d2
commit b764f1c861

View File

@@ -85,7 +85,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
newNotifications.forEach(function (n) {
$scope.notifications.push(n);
Client.notify(n.title, n.message, false, 'info', n.action);
Client.notify(n.title, n.message, false, 'info', '/#/notifications');
});
});