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