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