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
660d2405
Commit
660d2405
authored
May 05, 2013
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.action attribute on viewsets
parent
538d2e35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
rest_framework/viewsets.py
+13
-0
No files found.
rest_framework/viewsets.py
View file @
660d2405
...
...
@@ -59,6 +59,10 @@ class ViewSetMixin(object):
def
view
(
request
,
*
args
,
**
kwargs
):
self
=
cls
(
**
initkwargs
)
# We also store the mapping of request methods to actions,
# so that we can later set the action attribute.
# eg. `self.action = 'list'` on an incoming GET request.
self
.
action_map
=
actions
# Bind methods to actions
# This is the bit that's different to a standard view
...
...
@@ -87,6 +91,15 @@ class ViewSetMixin(object):
view
.
suffix
=
initkwargs
.
get
(
'suffix'
,
None
)
return
view
def
initialize_request
(
self
,
request
,
*
args
,
**
kargs
):
"""
Set the `.action` attribute on the view,
depending on the request method.
"""
request
=
super
(
ViewSetMixin
,
self
)
.
initialize_request
(
request
,
*
args
,
**
kargs
)
self
.
action
=
self
.
action_map
.
get
(
request
.
method
.
lower
())
return
request
class
ViewSet
(
ViewSetMixin
,
views
.
APIView
):
"""
...
...
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