Files
meanTorrent/public/modules/core/controllers/home.client.controller.js
2014-05-19 17:38:07 +03:00

9 lines
224 B
JavaScript

'use strict';
angular.module('core').controller('HomeController', ['$scope', 'Authentication',
function($scope, Authentication) {
// This provides Authentication context.
$scope.authentication = Authentication;
}
]);