diff options
| author | Tom Christie | 2011-05-27 14:40:19 +0100 |
|---|---|---|
| committer | Tom Christie | 2011-05-27 14:40:19 +0100 |
| commit | 21d2dcc2942a8e4adb3a79b0983841e5f0ab5878 (patch) | |
| tree | 82acf04d4f092a392e6db51a7467c63406929a3c /djangorestframework/views.py | |
| parent | 9e9ae6094943d663a677b3bbe8e8af6a43744daf (diff) | |
| download | django-rest-framework-21d2dcc2942a8e4adb3a79b0983841e5f0ab5878.tar.bz2 | |
Allow .form specified on view. Allow get_form, put_form, post_form. Add .PARAMS.
Diffstat (limited to 'djangorestframework/views.py')
| -rw-r--r-- | djangorestframework/views.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/djangorestframework/views.py b/djangorestframework/views.py index 1315229a..5b3cc855 100644 --- a/djangorestframework/views.py +++ b/djangorestframework/views.py @@ -64,11 +64,6 @@ class View(ResourceMixin, RequestMixin, ResponseMixin, AuthMixin, DjangoView): """ permissions = ( permissions.FullAnonAccess, ) - # Allow name and description for the Resource to be set explicitly, - # overiding the default classname/docstring behaviour. - # These are used for documentation in the standard html and text renderers. - name = None - description = None @classmethod def as_view(cls, **initkwargs): |
