mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
20 lines
434 B
JavaScript
20 lines
434 B
JavaScript
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
'use strict';
|
|
|
|
Application.Services.service('Session', [ function() {
|
|
this.create = function(user){
|
|
return this.currentUser = user;
|
|
};
|
|
|
|
this.destroy = function() {
|
|
return this.currentUser = null;
|
|
};
|
|
|
|
return this;
|
|
}
|
|
]);
|