- 31 Oct, 2014 1 commit
-
-
Frameworks throws AssertionError saying you cannot set required=True and...
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
-
- 28 Oct, 2014 1 commit
-
-
This fixes bad marshal data errors after running tests with tox and later running tests manually via runtests.py. Fixes #1957
José Padilla committed
-
- 22 Oct, 2014 1 commit
-
-
Maintain order of views on router for api root view.
Tom Christie committed
-
- 20 Oct, 2014 2 commits
-
-
wider compatability.
Erik Wickstrom committed -
Erik Wickstrom committed
-
- 17 Oct, 2014 2 commits
-
-
Add docs regarding linking third party packages
Tom Christie committed -
José Padilla committed
-
- 16 Oct, 2014 3 commits
-
-
Add djoser to authentication docs
Tom Christie committed -
konradhalas committed
-
konradhalas committed
-
- 05 Oct, 2014 2 commits
-
-
Update links in 2.4-announcement.md
Tom Christie committed -
The links to Django Rest Framework pages were 404ing because the URLs include a slash.
Kevin London committed
-
- 02 Oct, 2014 1 commit
-
-
[templates/rest_framework/base.html] Separate IDs for POST and PUT forms
Carlton Gibson committed
-
- 29 Sep, 2014 2 commits
-
-
Tom Christie committed
-
Tom Christie committed
-
- 26 Sep, 2014 1 commit
-
-
[templates/rest_framework/base.html] Separate `object-form' and `generic-content-form' IDs for POST and PUT forms Signed-off-by: Anton D. Kachalov <mouse@yandex-team.ru>
Anton D. Kachalov committed
-
- 24 Sep, 2014 4 commits
-
-
Correctly propagate cloned_request for OPTIONS
Tom Christie committed -
Remove patterns and strings from urls in tutorial.
Tom Christie committed -
José Padilla committed
-
Update to fix pending changes in #1507
José Padilla committed
-
- 23 Sep, 2014 1 commit
-
-
Collin Anderson committed
-
- 19 Sep, 2014 2 commits
-
-
Tom Christie committed
-
Tom Christie committed
-
- 18 Sep, 2014 3 commits
-
-
Fix missing CSRF exemption on viewsets
Tom Christie committed -
Clarify "raised inside REST framework"
Tom Christie committed -
Piper Merriam committed
-
- 17 Sep, 2014 7 commits
-
-
Matthew J Morrison committed
-
Tom Christie committed
-
DefaultRouter support for viewsets without an implemented default action
Tom Christie committed -
Update authtoken latest Django 1.7 migration
Tom Christie committed -
José Padilla committed
-
José Padilla committed
-
I ran into an issue today where I was not seeing the rest_framework.views.exception_handler do what I thought it should be doing. It turned out that I had imported View from rest_framework.views rather than importing APIView from rest_framework.views. The phrase "raised inside REST framework" was confusing as I was debugging this issue. I was unsure if that meant that I could raise those exceptions in my code or if it had to originate from within framework code. I'm not sure if the proposed wording is ideal, I just wanted to point out what I found to be confusing.
Matthew J Morrison committed
-
- 16 Sep, 2014 1 commit
-
-
add wq.db router and django-rest-pandas renderers
Tom Christie committed
-
- 15 Sep, 2014 1 commit
-
-
S. Andrew Sheppard committed
-
- 14 Sep, 2014 2 commits
-
-
Add Third Party Resources Topic section
Tom Christie committed -
José Padilla committed
-