mirror of
https://github.com/jazzband/django-authority.git
synced 2026-03-16 22:20:28 +00:00
8 lines
No EOL
174 B
Python
8 lines
No EOL
174 B
Python
from django.contrib import auth
|
|
|
|
|
|
def get_user_class():
|
|
if hasattr(auth, "get_user_model"):
|
|
return auth.get_user_model()
|
|
else:
|
|
return auth.models.User |