- 03 Nov, 2014 20 commits
-
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Version 3.0
Tom Christie committed -
Tom Christie committed
-
Fixed some typos in 3.0 release notes
Tom Christie committed -
Tom Christie committed
-
Rocky Meza committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
- 01 Nov, 2014 2 commits
-
-
typo fix
Tom Christie committed -
Andy Baker committed
-
- 31 Oct, 2014 13 commits
-
-
Tom Christie committed
-
Set up serializer fields lazily on-demand.
Tom Christie committed -
Tom Christie committed
-
Tom Christie committed
-
Fix follow does not work on get of APIRequestFactory
Tom Christie committed -
Tom Christie committed
-
Tom Christie committed
-
Frameworks throws AssertionError saying you cannot set required=True and...
Tom Christie committed -
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
Tom Christie committed
-
- 30 Oct, 2014 2 commits
-
-
Tom Christie committed
-
Tom Christie committed
-
- 29 Oct, 2014 3 commits
-
-
docs(api-guide/authentication): updated to reflect new standards in Django 1.7
Xavier Ordoquy committed -
Based on the [new documentation](https://docs.djangoproject.com/en/dev/topics/auth/customizing/#django.contrib.auth.get_user_model) for Django 1.7 we should now use: ```python @receiver(post_save, sender=settings.AUTH_USER_MODEL) ``` instead of: ```python @receiver(post_save, sender=get_user_model()) ``` because `get_user_model()` only works once Django has imported all models. Otherwise you'll get: ```python django.core.exceptions.AppRegistryNotReady: Models aren't loaded yet. ``` When trying to start your sever after adding token authentication. From the Docs, ( linked above as well ) : >New in Django 1.7: >When connecting to signals sent by the User model, you should specify the custom model using the AUTH_USER_MODEL setting.
Andrew Conti committed -
Use PYTHONDONTWRITEBYTECODE=1 on tox environment
Carlton Gibson committed
-