Make queries not return meeting password
This commit is contained in:
parent
63843d1afc
commit
f8af75d7d3
@ -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 });
|
||||
|
@ -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',
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user