habitica-self-host/common/script/ops/sleep.js

5 lines
158 B
JavaScript
Raw Normal View History

2016-03-07 22:02:42 +00:00
module.exports = function (user, req, cb) {
user.preferences.sleep = !user.preferences.sleep;
return typeof cb === 'function' ? cb(null, {}) : void 0;
};