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