This repository has been archived on 2025-11-04. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
know-it-all/server/routes/user/GetUserDetails.js

8 lines
205 B
JavaScript

async function GetUserDetails(req, res, next) {
const { userID, password, createdAt, updatedAt, ...user } =
req.user.dataValues;
return res.send(user);
}
module.exports = GetUserDetails;