fix route handling

This commit is contained in:
xfarrow
2024-03-20 10:30:49 +01:00
parent bb4749f874
commit d76a0d056a
7 changed files with 37 additions and 47 deletions

View File

@ -76,7 +76,6 @@ async function findByOrganizationId(organizationId){
const result = await knex('JobOffer')
.where({organization_id: organizationId})
.select();
console.log(result);
return result;
}