aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authtoken
AgeCommit message (Collapse)Author
2015-03-23Merge pull request #2743 from maurodoglio/serializer_class-html-rendererTom Christie
Use `serializer_class` for browsable API display, even on plain APIView.
2015-03-22Set serializer_class on ObtainAuthToken viewmdoglio
2015-03-22AuthTokenSerializer - properly render password fieldmdoglio
2015-01-30Merge masterTom Christie
2015-01-27Use the proper db_table argument when constructing metaLucas Wiman
2015-01-07prefer single quotes in source and double quotes in user visible strings; ↵Craig Blaszczyk
add some missing full stops to user visible strings
2015-01-07use double quotes for user visible strings; end user visible strings in full ↵Craig Blaszczyk
stops; add some missing translation tags
2014-12-04Removed custom python_2_unicode_compatible. Closes #2183Tymur Maryokhin
2014-11-28Removed unused importTymur Maryokhin
2014-11-28Update token auth view. Closes #2151.Tymur Maryokhin
2014-10-17Use serializers.ValidationErrorTom Christie
2014-10-10exceptions.ValidationFailed, not Django's ValidationErrorTom Christie
2014-09-26request.data attributeTom Christie
2014-09-19Merge branch 'master' into version-3.0Tom Christie
2014-09-17Update initial migration to work on Python 3José Padilla
2014-09-17Update authtoken latest Django 1.7 migrationJosé Padilla
2014-09-10Fix grammar in login error messageJoe Binney
2014-09-02Getting tests passingTom Christie
2014-08-19Code linting and added runtests.pyTom Christie
2014-06-23Allow use of native migrations in 1.7Carlton Gibson
2014-05-02Fix missing message in ValidationErrorCharlie Denton
2014-05-01Mark strings in AuthTokenSerializer as translatableCharlie Denton
2014-04-28Ensure Token.generate_key returns a string.Max Peterson
2014-02-04Generate random token directlyMatthew King
2013-12-16Don't import compat.py from authtoken.models. Closes #1297Tom Christie
2013-07-09Use absolute import styleTom Christie
2013-07-09Add an ModelAdmin for easy management of TokensGertjan Oude Lohuis
2013-06-26Use AUTH_USER_MODEL consistently between various Django versions. Closes #946Tom Christie
2013-03-08authtoken abstract if not installed.Tom Christie
Fixes #705.
2013-03-04Update migrationStephan Groß
2013-03-04Update migrationStephan Groß
2013-03-04Fix fix migrate authtokenStephan Groß
2013-03-04Fix authtoken migrationStephan Groß
2013-02-01Merge branch 'p3k' of https://github.com/linovia/django-rest-framework into ↵Tom Christie
working Conflicts: rest_framework/authentication.py rest_framework/relations.py rest_framework/serializers.py rest_framework/settings.py rest_framework/tests/authentication.py rest_framework/tests/genericrelations.py rest_framework/tests/generics.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_nested.py rest_framework/tests/relations_pk.py rest_framework/tests/serializer.py
2013-01-08ObtainAuthToken pluggable Serializer.Marc Tamlyn
It should have serializer_class in the same way as any other API view.
2013-01-02Merge remote-tracking branch 'reference/py3k' into p3kXavier Ordoquy
2012-12-07Reverted #458Tom Christie
When incorrect parameters are supplied to the obtain auth token view 400 *is* the correct response.
2012-12-02Merge remote-tracking branch 'reference/master' into p3kXavier Ordoquy
2012-11-28Better to return 401 when failing to authenticatePavel Savchenko
2012-11-24Every (base) test should now pass with python3.Xavier Ordoquy
2012-11-19Merge pull request #424 from jonlil/masterTom Christie
Support for django 1.5a (auth_user_model)
2012-11-19Complete fix for migrationJonas Liljestrand
2012-11-18fixed migration to support django 1.5Jonas Liljestrand
2012-11-17Moved function for getting correct user model to compat.pyJonas Liljestrand
2012-11-17Added support for Django 1.5 for TokenAuthJonas Liljestrand
2012-11-17fixed import errorJonas Liljestrand
2012-11-17indent errorJonas Liljestrand
2012-11-17Django 1.5 support, and awareness for AUTH_USER_MODELJonas Liljestrand
2012-11-14Removed authtoken/urls.py, not really needed with Tom's simplificationRob Romano
2012-11-14Renamed AuthTokenView to ObtainAuthToken, added obtain_auth_token var, ↵Rob Romano
updated tests & docs. Left authtoken.urls in place as example.