Webhooks: Allow longer URLs (fixes #5443) (#5622)

This commit is contained in:
Raphael Michel
2025-11-18 14:42:48 +01:00
committed by GitHub
parent d42c6f9b72
commit 2669afa1f8
2 changed files with 25 additions and 2 deletions
@@ -0,0 +1,23 @@
# Generated by Django 4.2.24 on 2025-11-14 16:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("pretixapi", "0013_alter_webhookcallretry_retry_not_before"),
]
operations = [
migrations.AlterField(
model_name="webhook",
name="target_url",
field=models.URLField(max_length=1024),
),
migrations.AlterField(
model_name="webhookcall",
name="target_url",
field=models.URLField(max_length=1024),
),
]