backend/api/models/participantModel.js

55 lines
1.1 KiB
JavaScript

const db = require('../../data/db');
module.exports = {
addParticipant,
getParticipantById,
updateParticipant,
deleteParticipant,
// getMeetingsByParticipantId,
};
function addParticipant(data) {
return db('participant')
.insert(data)
.returning([
'account_id',
'meeting_id',
'quorum',
'mandatory',
'host',
'answered',
]);
}
function updateParticipant(data, account_id, meeting_id) {
return db('participant')
.where({ account_id, meeting_id })
.update(data)
.returning([
'account_id',
'meeting_id',
'quorum',
'mandatory',
'host',
'answered',
]);
}
function deleteParticipant(account_id, meeting_id) {
return db('participant').where({ account_id, meeting_id }).del();
}
function getParticipantById(account_id, meeting_id) {
return db('participant')
.where({ account_id, meeting_id })
.first()
.select(
'account_id',
'meeting_id',
'quorum',
'mandatory',
'host',
'answered',
);
}