Skip to content
Snippets Groups Projects
Commit 7553c6dd authored by otofune's avatar otofune
Browse files

serializers - posts: no need Promise wrapping

parent 0ee6d659
No related merge requests found
......@@ -22,13 +22,13 @@ import rap from '@prezzemolo/rap';
* @param options? serialize options
* @return response
*/
const self = (
const self = async (
post: string | mongo.ObjectID | IPost,
me?: string | mongo.ObjectID | IUser,
options?: {
detail: boolean
}
) => new Promise<any>(async (resolve, reject) => {
) => {
const opts = options || {
detail: true,
};
......@@ -184,7 +184,7 @@ const self = (
// resolve promises in _post object
_post = await rap(_post);
resolve(_post);
});
return _post;
};
export default self;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment