bigbluebutton-Github/bigbluebutton-html5/imports/api/pads/server/handlers/padTail.js
2023-03-20 16:38:31 -03:00

15 lines
262 B
JavaScript

import tailPad from '/imports/api/pads/server/modifiers/tailPad';
export default async function padTail({ header, body }) {
const {
meetingId,
} = header;
const {
externalId,
tail,
} = body;
await tailPad(meetingId, externalId, tail);
}