Implemented PlayerDB as replacement for User, as per Django1.5. All migrations work, but there are still lots of changes to be done in the code to remove references to the User model.

This commit is contained in:
Griatch 2013-07-10 19:13:41 +02:00
parent 261e463505
commit c94472492a
10 changed files with 553 additions and 49 deletions

View file

@ -4,7 +4,7 @@ The managers for the custom Player object and permissions.
import datetime
from functools import update_wrapper
from django.contrib.auth.models import User
from django.contrib.auth.models import UserManager
from src.typeclasses.managers import returns_typeclass_list, returns_typeclass, TypedObjectManager
from src.utils import logger
__all__ = ("PlayerManager",)
@ -60,7 +60,7 @@ def returns_player(method):
return None
return update_wrapper(func, method)
class PlayerManager(TypedObjectManager):
class PlayerManager(TypedObjectManager, UserManager):
"""
This PlayerManager implements methods for searching
and manipulating Players directly from the database.