Skip to content

Bazzinga/django-registration-rest-framework

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Registration Rest Framework

Clone of Django Resgistration flow for Django Rest Framework

Based on

StackOverflow answer http://stackoverflow.com/a/19337404

and

django-registration https://django-registration.readthedocs.org/

Install

$ git clone git@github.com:tucarga/django-registration-rest-framework.git

$ pip install -e django-registration-rest-framework

Usage

settings.py

INSTALLED_APPS =
...
'registration_api',
...

# This setting is mandatory
REGISTRATION_API_ACTIVATION_SUCCESS_URL = '/'

urls.py

urlpatterns = patterns(
...
url(r'^accounts_api/', include('registration_api.urls')),
...
)

Test

$ python tests/runtests.py [TestsCase[.test_method]]

or:

$ python setup.py test

About

Registration for Django Rest Framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published