unpkg/server/actions/showAuth.js
2018-02-17 20:23:05 -08:00

6 lines
92 B
JavaScript

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