bigbluebutton-Github/bigbluebutton-html5/imports/api/captions/server/modifiers/clearCaptions.js

11 lines
341 B
JavaScript
Raw Normal View History

import Captions from '/imports/api/captions';
2017-01-18 20:53:33 +08:00
import Logger from '/imports/startup/server/logger';
export default function clearCaptions(meetingId) {
if (meetingId) {
return Captions.remove({ meetingId }, Logger.info(`Cleared Captions2x (${meetingId})`));
2017-01-18 20:53:33 +08:00
}
return Captions.remove({}, Logger.info('Cleared Captions2x (all)'));
2017-06-03 03:25:02 +08:00
}