Allow longer campaign URLs
All checks were successful
Deploy to Server / deploy (push) Successful in 28s

This commit is contained in:
Joakim Hellsén 2026-05-09 22:14:26 +02:00
commit 08a7fa2693
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
3 changed files with 106 additions and 3 deletions

View file

@ -600,21 +600,21 @@ class DropCampaign(auto_prefetch.Model):
details_url = models.URLField(
help_text="URL with campaign details.",
max_length=500,
max_length=2000,
blank=True,
default="",
)
account_link_url = models.URLField(
help_text="URL to link a Twitch account for the campaign.",
max_length=500,
max_length=2000,
blank=True,
default="",
)
image_url = models.URLField(
help_text="URL to an image representing the campaign.",
max_length=500,
max_length=2000,
blank=True,
default="",
)