Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
0e918055
Commit
0e918055
authored
Aug 18, 2014
by
Tom Christie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1739 from kevinlondon/patch-3
Updated documentation for urls.py
parents
61a1eaa4
aac864a5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
rest_framework/urls.py
+4
-4
No files found.
rest_framework/urls.py
View file @
0e918055
...
@@ -2,15 +2,15 @@
...
@@ -2,15 +2,15 @@
Login and logout views for the browsable API.
Login and logout views for the browsable API.
Add these to your root URLconf if you're using the browsable API and
Add these to your root URLconf if you're using the browsable API and
your API requires authentication.
your API requires authentication:
The urls must be namespaced as 'rest_framework', and you should make sure
your authentication settings include `SessionAuthentication`.
urlpatterns = patterns('',
urlpatterns = patterns('',
...
...
url(r'^auth', include('rest_framework.urls', namespace='rest_framework'))
url(r'^auth', include('rest_framework.urls', namespace='rest_framework'))
)
)
The urls must be namespaced as 'rest_framework', and you should make sure
your authentication settings include `SessionAuthentication`.
"""
"""
from
__future__
import
unicode_literals
from
__future__
import
unicode_literals
from
rest_framework.compat
import
patterns
,
url
from
rest_framework.compat
import
patterns
,
url
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment