2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-03-29 06:32:18 -05:00
|
|
|
import User, { pack } from '../../../models/user';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show myself
|
|
|
|
*/
|
2017-03-03 13:28:38 -06:00
|
|
|
module.exports = (params, user, _, isSecure) => new Promise(async (res, rej) => {
|
2016-12-28 16:49:51 -06:00
|
|
|
// Serialize
|
2018-02-01 17:21:30 -06:00
|
|
|
res(await pack(user, user, {
|
2016-12-28 16:49:51 -06:00
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
|
|
|
}));
|
2017-03-11 16:23:13 -06:00
|
|
|
|
|
|
|
// Update lastUsedAt
|
|
|
|
User.update({ _id: user._id }, {
|
|
|
|
$set: {
|
2018-04-07 13:58:11 -05:00
|
|
|
lastUsedAt: new Date()
|
2017-03-11 16:23:13 -06:00
|
|
|
}
|
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|