mirror of
https://github.com/elicpeter/nyx.git
synced 2026-07-03 20:41:00 +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 };
|