Skip to content

Instantly share code, notes, and snippets.

@BerkeleyTrue
Last active February 19, 2016 02:58
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save BerkeleyTrue/4eaba6684a07453129b6 to your computer and use it in GitHub Desktop.
function completedChallenge(req, res, next) {
const { user, body } = req;
// mutates user object
const { alreadyCompleted } = updateUserProgress(user, body);
/ sends entire user object to database
return saveUser(req.user)
.subscribe(
() => {},
next,
function() {
return res.json({
points: user.progressTimestamps.length,
alreadyCompleted
});
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment