@mymoons/mattermost-notifications
v1.1.3
Published
Package to send messages to mattermost users
Downloads
66
Keywords
Readme
Mattermost Notifications
Usage
/**
* sendNotification sends a notification to the desired destination with the specified content
* @param {Object} obj Object containing data
* @param {String} obj.text Content of the message
* @param {String} obj.to Recipient of the message, can be a channel or a user if preceded by @
* @param {String} obj.username Username the message is sent by
* @param {...Object} obj.props Any acceptable prop that mattermost can use
* @param {String} endpoint endpoint token
* @returns {Object} Response from mattermost API
*/
const sendNotification = async ({text, channel, username = 'Apolo de moons', ...props}, endpoint) => {}