mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-27 00:59:42 +00:00
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
|
|
module.exports = function (user, req, cb) {
|
||
|
|
user.preferences.sleep = !user.preferences.sleep;
|
||
|
|
return typeof cb === 'function' ? cb(null, {}) : void 0;
|
||
|
|
};
|