Make tests pass after rebase

This commit is contained in:
Raphael Michel
2026-01-22 12:48:35 +01:00
parent ff61d609ff
commit 1b083befb3
4 changed files with 28 additions and 23 deletions

View File

@@ -1,8 +1,8 @@
#
# This file is part of pretix (Community Edition).
#
# Copyright (C) 2014-2020 Raphael Michel and contributors
# Copyright (C) 2020-2021 rami.io GmbH and contributors
# Copyright (C) 2014-2020 Raphael Michel and contributors
# Copyright (C) 2020-today pretix GmbH and contributors
#
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
# Public License as published by the Free Software Foundation in version 3 of the License.
@@ -84,7 +84,7 @@ class OutgoingMail(models.Model):
subject = models.TextField()
body_plain = models.TextField()
body_html = models.TextField()
body_html = models.TextField(null=True)
sender = models.CharField(max_length=500)
headers = models.JSONField(default=dict)
to = models.JSONField(default=list)