-
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.
[#2221] Change default Zaak/Klant config to not use RSIN
- Loading branch information
Showing
4 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
.../openklant/migrations/0011_alter_openklantconfig_use_rsin_for_innnnpid_query_parameter.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,22 @@ | ||
# Generated by Django 4.2.11 on 2024-04-02 12:22 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openklant", "0010_openklantconfig_register_channel"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="openklantconfig", | ||
name="use_rsin_for_innNnpId_query_parameter", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If enabled, resources from the Klanten and Contactmomenten APIs for eHerkenning users are fetched using the company RSIN (Open Klant). If not enabled, these resources are fetched using the KvK number.", | ||
verbose_name="Fetch resources from Klanten and Contactmomenten APIs for users authenticated with eHerkenning using RSIN", | ||
), | ||
), | ||
] |
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
22 changes: 22 additions & 0 deletions
22
...nwoner/openzaak/migrations/0046_alter_openzaakconfig_fetch_eherkenning_zaken_with_rsin.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,22 @@ | ||
# Generated by Django 4.2.11 on 2024-04-02 12:22 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("openzaak", "0045_usercaseinfoobjectnotification_collision_key_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="openzaakconfig", | ||
name="fetch_eherkenning_zaken_with_rsin", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If enabled, Zaken for eHerkenning users are fetched using the company RSIN (Open Zaak). If not enabled, Zaken are fetched using the KvK number (eSuite).", | ||
verbose_name="Fetch Zaken for users authenticated with eHerkenning using RSIN", | ||
), | ||
), | ||
] |
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