11 lines
200 B
JavaScript
Executable File
11 lines
200 B
JavaScript
Executable File
import Presentations from '/imports/api/presentations';
|
|
|
|
const getCurrentPresentation = (podId) => Presentations.findOne({
|
|
podId,
|
|
current: true,
|
|
});
|
|
|
|
export default {
|
|
getCurrentPresentation,
|
|
};
|