Slapp context lookup module for running on Beep Boop
npm install slapp-context-beepboopThis is an implementation of a context middleware function for
slapp for Slack apps running on
Beep Boop. It populates the req.slapp.meta object with the following properties, which are pulled from HTTP headers from Beep Boop:
+ app_token
+ app_user_id
+ app_bot_id
+ bot_token
+ bot_user_id
+ bot_user_name
+ team_name
+ team_domain
+ incoming_webhook_url
+ incoming_webhook_channel
+ config (team-specific config)
+ error
```
npm install --save slapp-context-beepboop
`
const Slapp = require('slapp')
const BeepBoopContext = require('slapp-context-beepboop')
var slapp = Slapp({
context: BeepBoopContext(),
})
``