Allow to send all invoices to a specific email address (#2072)

Co-authored-by: Martin Gross <gross@rami.io>
This commit is contained in:
Raphael Michel
2021-05-11 12:49:24 +02:00
committed by GitHub
parent ab0fadc0fe
commit 389228bfe8
7 changed files with 92 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 3.2.2 on 2021-05-09 14:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pretixbase', '0185_memberships'),
]
operations = [
migrations.AddField(
model_name='invoice',
name='sent_to_organizer',
field=models.BooleanField(null=True, default=False),
preserve_default=False,
),
]