Files
meanTorrent/modules/articles/client/controllers/articles.client.controller.js

18 lines
368 B
JavaScript
Raw Permalink Normal View History

(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;
}
}());