-
Notifications
You must be signed in to change notification settings - Fork 26
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 #5075 from open-formulieren/issue/5024-remove-uppe…
…rcase-validation [#5024] Remove uppercase validation of Domain in ZGW registration backend
- Loading branch information
Showing
7 changed files
with
62 additions
and
13 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
...forms/contrib/objects_api/migrations/0006_alter_objectsapigroupconfig_catalogue_domain.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,23 @@ | ||
# Generated by Django 4.2.18 on 2025-02-03 20:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("objects_api", "0005_alter_objectsapigroupconfig_table"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="objectsapigroupconfig", | ||
name="catalogue_domain", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="The 'domein' attribute for the Catalogus resource in the Catalogi API.", | ||
max_length=5, | ||
verbose_name="catalogus domain", | ||
), | ||
), | ||
] |
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
23 changes: 23 additions & 0 deletions
23
...egistrations/contrib/zgw_apis/migrations/0019_alter_zgwapigroupconfig_catalogue_domain.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,23 @@ | ||
# Generated by Django 4.2.18 on 2025-02-03 20:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("zgw_apis", "0018_alter_zgwapigroupconfig_drc_service_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="zgwapigroupconfig", | ||
name="catalogue_domain", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="The 'domein' attribute for the Catalogus resource in the Catalogi API.", | ||
max_length=5, | ||
verbose_name="catalogus domain", | ||
), | ||
), | ||
] |
13 changes: 13 additions & 0 deletions
13
src/openforms/registrations/contrib/zgw_apis/migrations/0020_merge_20250204_1209.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 4.2.18 on 2025-02-04 11:09 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("zgw_apis", "0019_alter_zgwapigroupconfig_auteur"), | ||
("zgw_apis", "0019_alter_zgwapigroupconfig_catalogue_domain"), | ||
] | ||
|
||
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