unpkg/modules/actions/showAuth.js

6 lines
92 B
JavaScript

function showAuth(req, res) {
res.send({ auth: req.user });
}
module.exports = showAuth;