bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/service.js
2023-10-09 16:10:02 -03:00

11 lines
200 B
JavaScript
Executable File

import Presentations from '/imports/api/presentations';
const getCurrentPresentation = (podId) => Presentations.findOne({
podId,
current: true,
});
export default {
getCurrentPresentation,
};