mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-28 01:59:19 +01:00
13 lines
208 B
JavaScript
13 lines
208 B
JavaScript
'use strict';
|
|
|
|
// Authentication service for user variables
|
|
angular.module('users').factory('Authentication', ['$window',
|
|
function($window) {
|
|
var auth = {
|
|
user: $window.user
|
|
};
|
|
|
|
return auth;
|
|
}
|
|
]);
|