mondora/mondora-website-front

View on GitHub
app/pages/inbox/inbox.js

Summary

Maintainability
A
40 mins
Test Coverage
angular.module("mnd-web.pages")



.controller("InboxController", ["$scope", function ($scope) {

    var notificationsRQ = $scope.Notifications.reactiveQuery({});
    notificationsRQ.on("change", function () {
        $scope.safeApply(function () {
            $scope.notifications = notificationsRQ.result;
        });
    });
    $scope.notifications = notificationsRQ.result;

}]);