Allow longer campaign URLs
All checks were successful
Deploy to Server / deploy (push) Successful in 28s
All checks were successful
Deploy to Server / deploy (push) Successful in 28s
This commit is contained in:
parent
8229b0fe80
commit
08a7fa2693
3 changed files with 106 additions and 3 deletions
|
|
@ -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="",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue