Skip to content

Commit

Permalink
Change zammad_url default value
Browse files Browse the repository at this point in the history
  • Loading branch information
svenseeberg committed Sep 23, 2024
1 parent dfcf067 commit f1cf146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Migration(migrations.Migration):
name="zammad_url",
field=models.URLField(
blank=True,
default="",
default=None,
help_text="URL pointing to this region's Zammad instance. Setting this enables Zammad form offers.",
max_length=256,
null=True,
Expand Down
2 changes: 1 addition & 1 deletion integreat_cms/cms/models/regions/region.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ class Region(AbstractBaseModel):
max_length=256,
blank=True,
null=True,
default="",
default=None,
unique=True,
verbose_name=_("Zammad-URL"),
help_text=_(
Expand Down

0 comments on commit f1cf146

Please sign in to comment.