Re: The restricted usage of auth.User model when using custom AUTH_USER_MODEL

2014-02-27 Thread Burak Emre Kabakcı
OK, I give up. Actually I asked another question related to this topic before developing the application but the answers were similar to yours. (https://groups.google.com/forum/#!topic/django-developers/EnMn9_hU5g0) I had to use monkey-patching to allow dynamic AUTH_USER_MODEL but it wasn't a g

Re: The restricted usage of auth.User model when using custom AUTH_USER_MODEL

2014-02-13 Thread Russell Keith-Magee
On Fri, Feb 14, 2014 at 1:06 AM, Burak Emre Kabakcı wrote: > I have two applications: One of them uses default auth.User model and the > other one uses another AbstractUser class configured as AUTH_USER_MODEL. > These two apps uses same codebase except their settings.py file. One of the > models h

The restricted usage of auth.User model when using custom AUTH_USER_MODEL

2014-02-13 Thread Burak Emre Kabakcı
I have two applications: One of them uses default auth.User model and the other one uses another AbstractUser class configured as AUTH_USER_MODEL. These two apps uses same codebase except their settings.py file. One of the models has a ForeignKey field in relation with auth.User model (I use au