notificationController.js 358 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
'use strict';

angular.module('dgc.system.notification').controller('NotificationController', ['$scope', 'NotificationService',
    function($scope, NotificationService) {

        $scope.getNotifications = NotificationService.getAll;

        $scope.close = function(notification) {
            NotificationService.close(notification);
        };
    }
]);