-
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.
Merge pull request #1565 from maykinmedia/update-handleiding-for-klan…
…t-systeem-config
- Loading branch information
Showing
5 changed files
with
129 additions
and
17 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 53 additions & 0 deletions
53
src/open_inwoner/openklant/migrations/0020_add_more_help_texts_to_openklant2_config.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,53 @@ | ||
# Generated by Django 4.2.16 on 2025-01-20 09:57 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openklant", "0019_alter_klantensysteemconfig_primary_backend"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="openklant2config", | ||
name="interne_taak_gevraagde_handeling", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="Beschrijving van de gevraagde handeling voor de interne taak die ontstaat als resultaat van een vraag", | ||
verbose_name="Interne taak gevraagde handeling", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="openklant2config", | ||
name="interne_taak_toelichting", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="Toelichting bij de gevraagde handeling voor de interne taak die ontstaat als resultaat van een vraag", | ||
verbose_name="Interne taak toelichting", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="openklant2config", | ||
name="mijn_vragen_actor", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="De UUID van een bestaande Actor in de de configureerde API waaraan nieuwe vragen worden toegewezen", | ||
verbose_name="Mijn vragen actor", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="openklant2config", | ||
name="mijn_vragen_kanaal", | ||
field=models.CharField( | ||
blank=True, | ||
default="", | ||
help_text="Het kanaal waaronder nieuwe vragen als Klantcontact object zullen worden aangemaakt", | ||
verbose_name="Mijn vragen kanaal", | ||
), | ||
), | ||
] |
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