mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 15:33:09 +01:00
Revert "Make sure custom user logic works with Django 1.4"
This reverts commit 1aed6c9a96
.
This commit is contained in:
parent
1aed6c9a96
commit
33728bc0b1
@ -1 +0,0 @@
|
|||||||
import monkey_patch # Patch User model for older versions of Django
|
|
@ -1,15 +0,0 @@
|
|||||||
"""
|
|
||||||
django-helpdesk - A Django powered ticket tracker for small enterprise.
|
|
||||||
|
|
||||||
(c) Copyright 2008 Jutda. All Rights Reserved. See LICENSE for details.
|
|
||||||
|
|
||||||
monkey_patch.py - Monkey Patch the User model for older versions of
|
|
||||||
Django that don't support USERNAME_FIELD and get_username
|
|
||||||
"""
|
|
||||||
|
|
||||||
from django.contrib.auth import get_user_model
|
|
||||||
User = get_user_model()
|
|
||||||
if not hasattr(User, "USERNAME_FIELD"):
|
|
||||||
User.add_to_class("USERNAME_FIELD", "username")
|
|
||||||
if not hasattr(User, "get_username"):
|
|
||||||
User.add_to_class("get_username", lambda self: getattr(self, self.USERNAME_FIELD))
|
|
Loading…
Reference in New Issue
Block a user