mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
5 lines
157 B
JavaScript
5 lines
157 B
JavaScript
module.exports = function(user, req, cb) {
|
|
user.preferences.sleep = !user.preferences.sleep;
|
|
return typeof cb === "function" ? cb(null, {}) : void 0;
|
|
};
|