Files
meanTorrent/modules/core/client/controllers/home.client.controller.js

9 lines
231 B
JavaScript
Raw Normal View History

2014-02-10 13:09:31 +02:00
'use strict';
angular.module('core').controller('HomeController', ['$scope', 'Authentication',
function ($scope, Authentication) {
// This provides Authentication context.
$scope.authentication = Authentication;
}
]);