-
Notifications
You must be signed in to change notification settings - Fork 186
Open
Description
| module.exports = sendMessage; |
Error message:
CommonJS modules (require, exports and module.exports) are deprecated. Use ES modules instead (import, export). See https://roomos.cisco.com/docs/MacroTutorial.md#modules for more info.
According to the documentation:
- the "module.exports" line needs to be removed
- the function should be prefixed with "export default" (like this
export default function sendMessage(token, toPersonEmail, roomId, markdown) { - Because of the "default" above you don't need "{ }" when calling the function.
Cheers!
duittenb
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels