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