Make queries not return meeting password
This commit is contained in:
@@ -49,7 +49,6 @@ function getMeetingsByAccountId(account_id) {
|
|||||||
'm.start_time',
|
'm.start_time',
|
||||||
'm.duration',
|
'm.duration',
|
||||||
'm.status',
|
'm.status',
|
||||||
'm.password',
|
|
||||||
)
|
)
|
||||||
.join('meeting as m', { 'm.id': 'p.meeting_id' })
|
.join('meeting as m', { 'm.id': 'p.meeting_id' })
|
||||||
.where({ account_id });
|
.where({ account_id });
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ function addMeeting(data) {
|
|||||||
'start_time',
|
'start_time',
|
||||||
'duration',
|
'duration',
|
||||||
'status',
|
'status',
|
||||||
'password',
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -35,7 +34,6 @@ function updateMeeting(data, id) {
|
|||||||
'start_time',
|
'start_time',
|
||||||
'duration',
|
'duration',
|
||||||
'status',
|
'status',
|
||||||
'password',
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,7 +52,6 @@ function getMeetingById(id) {
|
|||||||
'start_time',
|
'start_time',
|
||||||
'duration',
|
'duration',
|
||||||
'status',
|
'status',
|
||||||
'password',
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user