You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It isn't clear which messaging formats are used when sending messages between functions. An example of this inconsistency is shown below:
actionHandler() to msgFlagger() uses a message format defined in the slack package.
msgFlagger() to msgSender() uses a message format defined in the messaging package.
The original intention was to use an internal messaging format to avoid some of the complexity that comes with being tied to the Slack messaging format. The reality is that all of the internal messages closely resemble the Slack messages and confusion arises as to which format is used.
The text was updated successfully, but these errors were encountered:
It isn't clear which messaging formats are used when sending messages between functions. An example of this inconsistency is shown below:
actionHandler()
tomsgFlagger()
uses a message format defined in theslack
package.msgFlagger()
tomsgSender()
uses a message format defined in themessaging
package.The original intention was to use an internal messaging format to avoid some of the complexity that comes with being tied to the Slack messaging format. The reality is that all of the internal messages closely resemble the Slack messages and confusion arises as to which format is used.
The text was updated successfully, but these errors were encountered: