mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
added pep8 fix and missing migration
This commit is contained in:
parent
645f196848
commit
a2315eb0c4
20
helpdesk/migrations/0014_usersettings_related_name.py
Normal file
20
helpdesk/migrations/0014_usersettings_related_name.py
Normal file
@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
from django.conf import settings
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('helpdesk', '0013_email_box_local_dir_and_logging'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='usersettings',
|
||||
name='user',
|
||||
field=models.OneToOneField(to=settings.AUTH_USER_MODEL, related_name='usersettings_helpdesk'),
|
||||
),
|
||||
]
|
@ -127,4 +127,4 @@ class TicketActionsTestCase(TestCase):
|
||||
response = self.client.get(reverse('helpdesk:submit'), follow=True)
|
||||
self.assertEqual(response.status_code, 200)
|
||||
|
||||
# TODO this needs to be checked further
|
||||
# TODO this needs to be checked further
|
||||
|
Loading…
Reference in New Issue
Block a user