Fix getParticipantsByMeetingId

This commit is contained in:
rui hildt 2020-08-28 16:08:19 +02:00
parent aaa33b46cb
commit f53842271a
1 changed files with 2 additions and 2 deletions

View File

@ -58,10 +58,10 @@ function getMeetingById(id) {
function getParticipantsByMeetingId(meeting_id) {
return db('participant as p')
.select(
'p.id',
'p.account_id',
'p.email',
'p.meeting_id',
'p.earliest_time',
'p.latest_time',
'p.quorum',
'p.mandatory',
'p.host',