17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
import contentPad from '/imports/api/pads/server/modifiers/contentPad';
|
|
|
|
export default async function padContent({ header, body }) {
|
|
const {
|
|
meetingId,
|
|
} = header;
|
|
|
|
const {
|
|
externalId,
|
|
start,
|
|
end,
|
|
text,
|
|
} = body;
|
|
|
|
await contentPad(meetingId, externalId, start, end, text);
|
|
}
|