Releases: zpriddy/GLaDOS
0.0.1-dev24
- Fix bug in datastore
- rename db to datastore
0.0.1-dev23
Add has_route() to plugin
0.0.1-dev22
Fix recursion issue
0.0.1-dev21
Bug fixes and raise more errors
0.0.1-dev20
Fixing issues getting env_vars from config files
0.0.1-dev19
Dev version 0.0.1-dev19
Added DataStore Logging
0.0.1-dev18 Added more logging and bumped version number
DataStore and Documentation
DataStoreInteractions are data that is related to a message or interaction that needs to be retrieved when a user responds to a message.
Notes:
DataStoreInteractions will auto be retrieved using the original channel and ts of the message the user is responding to.
In most cases the response from the plugin is the json response from slack of sending a message. This data will be autolinked to the new_interaction object in the request. If there is no new_interaction set by the plugin, it will be skipped. It can also be skipped by setting request.auto_link to False.
You can create more than one interaction entry per request, it will just have to be done manually using the functions added to the request module.
TODO:
Need to add in a function to look for all interactions that have not been followed up and that the followup_ts has passed. In these cases it should take the bot and followup_action and execute them.
Also we may need to purge old interactions in the datastore every once in a while
Add DataStore and DataStore Interactions
DataStoreInteractions are data that is related to a message or interaction that needs to be retrieved when a user responds to a message.
Notes:
DataStoreInteractions will auto be retrieved using the original channel and ts of the message the user is responding to.
In most cases the response from the plugin is the json response from slack of sending a message. This data will be autolinked to the new_interaction object in the request. If there is no new_interaction set by the plugin, it will be skipped. It can also be skipped by setting request.auto_link to False.
You can create more than one interaction entry per request, it will just have to be done manually using the functions added to the request module.
TODO:
Need to add in a function to look for all interactions that have not been followed up and that the followup_ts has passed. In these cases it should take the bot and followup_action and execute them.
Also we may need to purge old interactions in the datastore every once in a while
0.0.1-dev15
Docs fix