Make queries not return meeting password

This commit is contained in:
rui hildt 2020-08-28 20:43:15 +02:00
parent 63843d1afc
commit f8af75d7d3
2 changed files with 0 additions and 4 deletions

View File

@ -49,7 +49,6 @@ function getMeetingsByAccountId(account_id) {
'm.start_time',
'm.duration',
'm.status',
'm.password',
)
.join('meeting as m', { 'm.id': 'p.meeting_id' })
.where({ account_id });

View File

@ -20,7 +20,6 @@ function addMeeting(data) {
'start_time',
'duration',
'status',
'password',
]);
}
@ -35,7 +34,6 @@ function updateMeeting(data, id) {
'start_time',
'duration',
'status',
'password',
]);
}
@ -54,7 +52,6 @@ function getMeetingById(id) {
'start_time',
'duration',
'status',
'password',
);
}