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

15 lines
375 B
JavaScript

import Captions from '/imports/api/captions';
import Logger from '/imports/startup/server/logger';
export default function clearCaptions(meetingId) {
if (meetingId) {
return Captions.remove({ meetingId }, () => {
Logger.info(`Cleared Captions (${meetingId})`);
});
}
return Captions.remove({}, () => {
Logger.info('Cleared Captions (all)');
});
}