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