mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
async function bulkArchive(userId, ids) {
|
|||
await checkMembership(userId, ids[0]);
|
|||
return projectModel.archiveByIds(ids);
|
|||
}
|
|||
|
|||
module.exports = { bulkArchive };
|