unpkg/modules/actions/showAuth.js

6 lines
92 B
JavaScript
Raw Normal View History

2017-11-11 20:18:13 +00:00
function showAuth(req, res) {
2018-02-18 02:00:56 +00:00
res.send({ auth: req.user });
2017-11-11 20:18:13 +00:00
}
2018-02-18 02:00:56 +00:00
module.exports = showAuth;