mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-03 04:59:25 +01:00
14 lines
220 B
JavaScript
14 lines
220 B
JavaScript
'use strict';
|
|
|
|
// Authentication service for user variables
|
|
angular.module('users').factory('Authentication', [
|
|
function() {
|
|
var _this = this;
|
|
|
|
_this._data = {
|
|
user: window.user
|
|
};
|
|
|
|
return _this._data;
|
|
}
|
|
]); |