mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
20 lines
671 B
Python
20 lines
671 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?'),
|
||
|
),
|
||
|
]
|