jormungandr-bite/src/server/api/endpoints/i.ts

29 lines
519 B
TypeScript
Raw Normal View History

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