blob: 481ddbb9fa3aeb1157179479ee73733b5fea2ca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
'use strict';
/**
* Module dependencies
*/
import serialize from '../serializers/user';
/**
* Show myself
*
* @param {Object} params
* @param {Object} user
* @param {Object} app
* @param {Boolean} isSecure
* @return {Promise<object>}
*/
module.exports = (params, user, _, isSecure) =>
new Promise(async (res, rej) =>
{
// Serialize
res(await serialize(user, user, {
detail: true,
includeSecrets: isSecure
}));
});
|