mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-03 00:15:46 +02:00
23 lines
726 B
Python
23 lines
726 B
Python
# Generated by Django 3.1.13 on 2021-08-18 14:30
|
|
|
|
from django.db import migrations, models
|
|
import helpdesk.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("helpdesk", "0034_create_email_template_for_merged"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="usersettings",
|
|
name="email_on_ticket_change",
|
|
field=models.BooleanField(
|
|
default=helpdesk.models.email_on_ticket_change_default,
|
|
help_text="If you're the ticket owner and the ticket is changed via the web by somebody else,do you want to receive an e-mail?",
|
|
verbose_name="E-mail me on ticket change?",
|
|
),
|
|
),
|
|
]
|