Sharkey/src/server/api/endpoints/i.ts

23 lines
473 B
TypeScript
Raw Normal View History

2018-06-18 03:54:53 +03:00
import User, { pack, ILocalUser } from '../../../models/user';
import { IApp } from '../../../models/app';
2016-12-29 00:49:51 +02:00
/**
* Show myself
*/
2018-07-05 20:58:29 +03:00
export default (params: any, user: ILocalUser, app: IApp) => new Promise(async (res, rej) => {
const isSecure = user != null && app == null;
2016-12-29 00:49:51 +02:00
// Serialize
2018-02-02 01:21:30 +02:00
res(await pack(user, user, {
2016-12-29 00:49:51 +02:00
detail: true,
includeSecrets: isSecure
}));
2017-03-12 00:23:13 +02:00
// Update lastUsedAt
User.update({ _id: user._id }, {
$set: {
2018-04-07 21:58:11 +03:00
lastUsedAt: new Date()
2017-03-12 00:23:13 +02:00
}
});
2016-12-29 00:49:51 +02:00
});