Files
meanTorrent/modules/articles/client/controllers/articles.client.controller.js
Sujeeth 607ed061e3 feat(core): add notification feedback with angular-ui-notification (#1532)
Added visual notification for user/article updates
angular-ui-notification config added to core client config
Notification idea from #369
2016-10-10 14:51:44 -07:00

18 lines
368 B
JavaScript

(function () {
'use strict';
angular
.module('articles')
.controller('ArticlesController', ArticlesController);
ArticlesController.$inject = ['$scope', 'articleResolve', 'Authentication'];
function ArticlesController($scope, article, Authentication) {
var vm = this;
vm.article = article;
vm.authentication = Authentication;
}
}());