15 lines
408 B
TypeScript
15 lines
408 B
TypeScript
|
|
//import $ from 'cafy'; import ID from '../../../../../cafy-id';
|
||
|
|
import FollowRequest, { pack } from '../../../../../models/follow-request';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get all pending received follow requests
|
||
|
|
*/
|
||
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
||
|
|
const reqs = await FollowRequest.find({
|
||
|
|
followeeId: user._id
|
||
|
|
});
|
||
|
|
|
||
|
|
// Send response
|
||
|
|
res(await Promise.all(reqs.map(req => pack(req))));
|
||
|
|
});
|