aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/authentication.md
AgeCommit message (Collapse)Author
2015-01-23Merge masterTom Christie
2015-01-22fix link to Django CSRF docsDuncan Maitland
2015-01-19Merge masterTom Christie
2015-01-07fixed doc : DEFAULT_AUTHENTICATION_CLASSES -> DEFAULT_AUTHENTICATIONJocelynDelalande
+ It is consistent with docs about DEFAULT_PERMISSION_CLASSES
2015-01-05Add docs for OAuth, XML, YAML, JSONP packages. Closes #2179.Tom Christie
2014-11-28Merge branch 'version-3.1' into oauth_as_packageJosé Padilla
Conflicts: requirements-test.txt rest_framework/compat.py tests/settings.py tox.ini
2014-11-25Use MkDocs meta.source to render source code linksJosé Padilla
2014-11-06minor spelling tweaksBrett Koonce
2014-10-29Update authentication.mdAndrew Conti
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.
2014-10-16Add djoser to authentication docs.konradhalas
2014-09-23remove patterns and strings from urls #1898Collin Anderson
2014-09-05Moved OAuth support out of DRF and into a separate package, per #1767Jharrod LaFon
2014-08-18Improve wording.Carlton Gibson
2014-08-18Alter other reference to migrations.Carlton Gibson
2014-08-18Updated docs for South v1.0Carlton Gibson
2014-06-24Merge branch '2.4.0' of github.com:tomchristie/django-rest-framework into #1559Carlton Gibson
Conflicts: docs/topics/release-notes.md
2014-06-24Added (first pass) notes to docs & release notes. Backed out ↵Carlton Gibson
`SOUTH_MIGRATION_MODULES` setting from `rest_framework.settings`
2014-05-29Note on configuring TokenAuthenticationTom Christie
2014-02-28Adds HawkREST to 3rd party auth docsKumar McMillan
2014-02-28Fix trailing whitespaceKumar McMillan
Sorry, my editor does this automatically
2014-02-20include djangorestframework-httpsignature in the docsElvio Toccalino
2014-01-18Include the djangorestframework-jwt packageJosé Padilla
2013-12-11Use get_user_model instead of User in Generating Tokens exampleOddBloke
Because that's a better way of doing it.
2013-12-11Add full required imports to Generating Tokens exampleOddBloke
Previously we were missing User and post_save.
2013-10-31Updated OAuth2 authentication docs.erkarl
2013-09-02Changed DOAC documentation linkKevin Brown
2013-08-21Include import paths throughout docs.Tom Christie
Closes #1051. Thanks to @pydanny for the report.
2013-07-29Minor typo fixJames Rutherford
2013-07-29Updated authtoken docs to mention south migrationsJames Rutherford
2013-07-29Docs about migrations and `post_save`.Tom Christie
Documentation detailing requirement to migrate prior to running `createsuperuser` if using an authtoken `post_save` signal. Closes #987. Thanks to @yprez.
2013-07-02Fix broken link by hacking around md->html translatingTom Christie
2013-07-01Tweak textTom Christie
2013-07-01Capitalization on OAuthTom Christie
2013-07-01Added Django OAuth2 Consumer packageTom Christie
2013-06-17Add Django OAuth Toolkit to docsTom Christie
2013-06-03request.user should be still be accessible in renderer context if ↵Tom Christie
authentication fails
2013-05-28Fix md formatting and typosStephan Groß
2013-04-26Adding 'view or viewset' to docs appropriate.Tom Christie
2013-04-11Remove redundant text.Victor Shih
2013-03-30Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2013-03-28Note on using curl with token authTom Christie
2013-03-27Complete remove of client checks from oauth2Fernando Rocha
Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
2013-03-09Docs polishing.Tom Christie
2013-03-07Tweak docsTom Christie
2013-03-07Merge OAuth2 work.Tom Christie
2013-03-07Merge & clean OAuth supportTom Christie
2013-03-06Update the documentationPierre Dulac
with a warning for incompatibility with Python 3 and taking @tomchristie advice into account on how to reformulate some sentences
2013-03-05Fix typoStephan Groß
2013-03-05Docs tweak.Tom Christie
2013-03-05Minor docs tweakTom Christie