-
Notifications
You must be signed in to change notification settings - Fork 6
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
[#1839] Enable/disable notifications per status type #838
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #838 +/- ##
========================================
Coverage 92.84% 92.85%
========================================
Files 753 755 +2
Lines 26143 26172 +29
========================================
+ Hits 24272 24301 +29
Misses 1871 1871
📣 Codecov offers a browser extension for seamless coverage viewing on GitHub. Try it in Chrome or Firefox today! |
src/open_inwoner/openzaak/models.py
Outdated
@@ -362,6 +362,7 @@ class ZaakTypeStatusTypeConfig(models.Model): | |||
"Description that will be shown above the document upload widget in a case detail page" | |||
), | |||
) | |||
notify_status_change = models.BooleanField(default=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a verbose_name
and help_text
for this field?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment was resolved, but I think you forgot to add these attributes?
8a46eb1
to
18739a1
Compare
src/open_inwoner/openzaak/models.py
Outdated
@@ -362,6 +362,7 @@ class ZaakTypeStatusTypeConfig(models.Model): | |||
"Description that will be shown above the document upload widget in a case detail page" | |||
), | |||
) | |||
notify_status_change = models.BooleanField(default=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment was resolved, but I think you forgot to add these attributes?
@pi-sigma could you fix the merge conflict as well? |
18739a1
to
6f8e3ff
Compare
@stevenbal Sorry for the confusion, I must have made a mistake during rebasing. |
Taiga #1839