2016-12-28 16:49:51 -06:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import serialize from '../serializers/user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show myself
|
|
|
|
*
|
2017-03-01 02:37:01 -06:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @param {any} app
|
2016-12-28 16:49:51 -06:00
|
|
|
* @param {Boolean} isSecure
|
2017-03-01 02:37:01 -06:00
|
|
|
* @return {Promise<any>}
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
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
|
|
|
|
res(await serialize(user, user, {
|
|
|
|
detail: true,
|
|
|
|
includeSecrets: isSecure
|
|
|
|
}));
|
|
|
|
});
|