Files
meanTorrent/modules/core/client/controllers/home.client.controller.js
2014-11-10 23:12:33 +02:00

8 lines
223 B
JavaScript

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