mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-16 12:22:26 +01:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
'use strict';
|
|
|
|
angular.module('core').controller('HomeController', ['$scope', 'Authentication',
|
|
function ($scope, Authentication) {
|
|
// This provides Authentication context.
|
|
$scope.authentication = Authentication;
|
|
}
|
|
]);
|