habitica/common/script/ops/sleep.js

5 lines
157 B
JavaScript
Raw Normal View History

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