mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-05 05:59:30 +01:00
8 lines
305 B
JavaScript
8 lines
305 B
JavaScript
'use strict';
|
|
|
|
angular.module('core')
|
|
.controller('HomeController', ['$scope', 'Authentication', function ($scope, Authentication) {
|
|
// This provides Authentication context.
|
|
// see /public/modules/users/services/authentication.client.service.js
|
|
$scope.authentication = Authentication;
|
|
}]); |