mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-27 03:54:01 +03:00
Removed authtoken/urls.py, not really needed with Tom's simplification
This commit is contained in:
parent
4fd590f96f
commit
8ebbae683b
|
@ -1,20 +0,0 @@
|
|||
"""
|
||||
Login view for token authentication.
|
||||
|
||||
Add this to your root URLconf if you're using token authentication
|
||||
your API requires authentication.
|
||||
|
||||
You should make sure your authentication settings include
|
||||
`TokenAuthentication`.
|
||||
|
||||
urlpatterns = patterns('',
|
||||
...
|
||||
url(r'^auth-token/', 'rest_framework.authtoken.obtain_auth_token')
|
||||
)
|
||||
"""
|
||||
|
||||
from django.conf.urls.defaults import patterns, url
|
||||
|
||||
urlpatterns = patterns('rest_framework.authtoken.views',
|
||||
url(r'^login/$', 'rest_framework.authtoken.views.obtain_auth_token', name='token_login'),
|
||||
)
|
Loading…
Reference in New Issue
Block a user