Sharkey/src/api/endpoints/i.ts

26 lines
422 B
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
'use strict';
/**
* Module dependencies
*/
import serialize from '../serializers/user';
/**
* Show myself
*
2017-03-01 10:37:01 +02:00
* @param {any} params
* @param {any} user
* @param {any} app
2016-12-29 00:49:51 +02:00
* @param {Boolean} isSecure
2017-03-01 10:37:01 +02:00
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
module.exports = (params, user, _, isSecure) =>
new Promise(async (res, rej) =>
{
// Serialize
res(await serialize(user, user, {
detail: true,
includeSecrets: isSecure
}));
});