Update job_offer_model.js

This commit is contained in:
xfarrow
2024-03-18 17:28:46 +01:00
parent 8636416003
commit 072d659425

View File

@ -53,15 +53,17 @@ async function remove(requester, jobOfferId) {
}
const isAdmin = await OrganizationAdmin.isAdmin(requester, jobOffer.organization_id);
if (isAdmin) {
if (!isAdmin) {
return false;
}
const deletedRows = await knex('JobOffer')
.where({
id: jobOfferId
}).del();
})
.del();
return deletedRows === 1;
} else {
return false;
}
}
async function findById(jobOfferId) {