Victor Boctor
Victor Boctor
Postman supports ":param" in path as a first-class concept which is convenient compared to having to use pre-request variables. It is also useful when importing a Postman collection into Bruno...
Fixes #22408
This is a proposal for centralizing all business logic relating to an issue workflow. It just explains the concepts and implements the core class, but it doesn't use it across...
It would be good if serverless-slack supports stages out of the box. For example, having a dev and prod stages that use different slack apps, dynamo-db tables, etc.
When using `serverless-slack` I had an issue where I changed the region and it didn't work. Turned out that `serverless.yml` references the region in multiple locations and I didn't update...
When attempting to understand how events work, it would be good to be able to set verbose logging to true on Slack class and have it output console.log statements to...
When setting up the app, Slack offers the option of showing the bot as always online even if it is not using the Slack RTM protocol. Would be good for...
The current recommended approach for managing slack secrets will cause such secrets to checked into source control. It would be good to have a way to manage such secrets without...
``` slack.on('*', (payload, bot, store) => { console.log( "star-event payload %s", JSON.stringify( payload ) ); }); // Slash Command handler slack.on('/my-command', (payload, bot, store) => { ... }); // Interactive...
When an app is created a slack, slack offers authorizing the app to access your workspace, but if you do this, the serverless-slack won't capture the team information in dynamo-db....