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