Hi Julia great article. Wonder if you could help me with something? How would I alter get CurrentUser in usercontroller.js to only return username and email of the current user?
I'm struggling to work out how userWithoutPassword works.
Thanks
Andy
Ah, typical, posted for help and worked it out shortly afterwards.
Wasn't aware of the es6 spread operator, altering as per below removes those items from being sent.
getCurrentUser = async (req, res, next) => { const { password, first_name, last_name...userWithLessInfo } = req.currentUser; res.send(userWithLessInfo); };
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Hi Julia great article. Wonder if you could help me with something? How would I alter get CurrentUser in usercontroller.js to only return username and email of the current user?
I'm struggling to work out how userWithoutPassword works.
Thanks
Andy
Ah, typical, posted for help and worked it out shortly afterwards.
Wasn't aware of the es6 spread operator, altering as per below removes those items from being sent.
getCurrentUser = async (req, res, next) => {
const { password, first_name, last_name...userWithLessInfo } = req.currentUser;
res.send(userWithLessInfo);
};