This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (JSON)
Go to file
Matt d'Entremont 7fbdcff5e0 Alter a statement to make it python3 compatible
- In python 3, filter returns an iterator instead of a list
- Thus bool(filter(...)) always evaluated to true on python3
- Convert the filter to a list comprehension to ensure it evaluated as
  expected on python 3
2015-10-26 10:13:27 -03:00
demo version 0.5.0 2015-08-20 11:28:45 +02:00
docs Don't log the user out after change password - Django 1.7 2015-10-18 00:20:50 -04:00
rest_auth Alter a statement to make it python3 compatible 2015-10-26 10:13:27 -03:00
.gitignore Updated gitignore 2015-04-13 15:03:46 +02:00
.travis.yml Update .travis.yml 2015-08-14 15:12:08 +02:00
AUTHORS Created AUTHORS, MANIFEST.in, and setup.py. 2014-04-30 13:55:04 -07:00
flake8 adding static code analysis 2015-04-28 10:04:20 +02:00
LICENSE Initial commit 2014-04-30 12:50:41 -07:00
MANIFEST.in Created AUTHORS, MANIFEST.in, and setup.py. 2014-04-30 13:55:04 -07:00
README.rst Update README.rst 2015-08-14 15:20:20 +02:00
runtests.py Flake8 style fixes 2015-04-28 10:22:08 +02:00
setup.py version 0.5.0 2015-08-20 11:28:45 +02:00
test_requirements.pip upgrade flake version 2015-04-28 10:56:42 +02:00
test_settings.py move some test files outside app 2014-10-14 14:56:00 +02:00

Welcome to django-rest-auth
===========================

.. image:: https://travis-ci.org/Tivix/django-rest-auth.png
    :target: https://travis-ci.org/Tivix/django-rest-auth


.. image:: https://coveralls.io/repos/Tivix/django-rest-auth/badge.png
    :target: https://coveralls.io/r/Tivix/django-rest-auth?branch=master


.. image:: https://readthedocs.org/projects/django-rest-auth/badge/?version=latest
    :target: https://readthedocs.org/projects/django-rest-auth/?badge=latest


Django-rest-auth provides a set of REST API endpoints for Authentication and Registration


Documentation
-------------
http://django-rest-auth.readthedocs.org/en/latest/


Source code
-----------
https://github.com/Tivix/django-rest-auth