-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building features on top of demo application #118
Comments
Related to #58 |
To add to this a bit - it appears some of the default handlers are included in the packaged version such as: 👋 Don't forget to fill out an incident report here: http://localhost:8000/incident/1/ Is there a way to modify these? |
To your original question - that's odd 🤔 my first thought is that Python isn't importing that file, even though you've imported it in If not, then you might need to add the import somewhere else - e.g. |
As to overriding the default handlers, it's not possible just yet. We've done something like this for
I'd like to do something similar for handlers too |
I was able to work through this, thanks for the help. In regards to the overriding - would it be possible to prioritize custom vs. built in, in a similar case as you've described for incident_command? That way any custom take priority, and if none exist for a specific command, then the default is chosen. |
Hello,
I am trying to leverage the packaged version, and adding additional functionality per this documentation: https://github.com/monzo/response/blob/master/docs/development.md
In manage.py I've added:
import ui.keyword_handlers
I've created a new file called keyword_handlers.py:
This isn't working though. How can I add this additional functionality to the packaged version?
Thank you.
The text was updated successfully, but these errors were encountered: