75969ec93c
Add a server-side app for the audio captions feature and record proto-events for this data. As it is, only behaves as a pass-through module. The idea is to include all the business intelligence in this app.
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import updateTranscript from '/imports/api/audio-captions/server/methods/updateTranscript';
|
|
|
|
Meteor.methods({
|
|
updateTranscript,
|
|
});
|