1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 18:29:17 +02:00
OpenSTF/lib/units/api/controllers/user.js
2016-07-22 19:34:22 +05:30

10 lines
149 B
JavaScript

module.exports = {
getCurrentUser: getCurrentUser
};
function getCurrentUser(req, res) {
res.json({
success: true
, user: req.user
})
}