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.
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
import setTranscript from '/imports/api/audio-captions/server/modifiers/setTranscript';
|
|
|
|
export default function transcriptUpdated({ header, body }) {
|
|
const { meetingId } = header;
|
|
|
|
const { transcript } = body;
|
|
|
|
setTranscript(meetingId, transcript);
|
|
}
|