mirror of
https://github.com/openstf/stf
synced 2025-10-04 10:19:30 +02:00
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
module.exports = {
|
|
getCurrentUser: getCurrentUser
|
|
};
|
|
|
|
function getCurrentUser(req, res) {
|
|
res.json({
|
|
success: true
|
|
, user: req.user
|
|
})
|
|
}
|