-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#1839] Enable/disable notifications per status type
- Loading branch information
Showing
5 changed files
with
117 additions
and
6 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
src/open_inwoner/openzaak/migrations/0029_auto_20231113_1459.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Generated by Django 3.2.20 on 2023-11-13 13:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openzaak", "0028_merge_20231101_1705"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="zaaktypestatustypeconfig", | ||
name="notify_status_change", | ||
field=models.BooleanField( | ||
verbose_name="Notify of status change", | ||
default=True, | ||
help_text="Whether the user should be notfied if a case is set to this type of status", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="zaaktypeconfig", | ||
name="notify_status_changes", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Whether the user should be notified of status changes for cases with this zaak type", | ||
verbose_name="Notify of status changes", | ||
), | ||
), | ||
] |
13 changes: 13 additions & 0 deletions
13
src/open_inwoner/openzaak/migrations/0030_merge_20231113_1518.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Generated by Django 3.2.20 on 2023-11-13 14:18 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openzaak", "0029_auto_20231113_1459"), | ||
("openzaak", "0029_zaaktypestatustypeconfig_description"), | ||
] | ||
|
||
operations = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters