mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-27 18:26:43 -06: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))));
|
||
|
});
|