mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-29 14:08:05 +09:00
12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
import Matching, { pack as packMatching } from '../../models/othello-matching';
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
// Find session
|
|
const invitations = await Matching.find({
|
|
child_id: user._id
|
|
});
|
|
|
|
// Reponse
|
|
res(Promise.all(invitations.map(async (i) => await packMatching(i, user))));
|
|
});
|