Skip to content

Commit

Permalink
fix(members): add notification_email to getUser change (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
WikiRik authored Feb 22, 2021
1 parent c7bf043 commit d094b0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion middlewares/members.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ exports.getUser = async (req, res) => {
id: req.currentUser.id,
first_name: req.currentUser.first_name,
last_name: req.currentUser.last_name,
email: req.currentUser.email
email: req.currentUser.email,
notification_email: req.currentUser.notification_email
}
});
}
Expand Down

0 comments on commit d094b0a

Please sign in to comment.