Skip to content

Commit

Permalink
add partial update permission
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Mohsen committed Sep 23, 2020
1 parent bb8b286 commit b370fd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions django_restful_admin/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def get_permission_map(self):
'retrieve': self._make_permission_key('view'),
'create': self._make_permission_key('add'),
'update': self._make_permission_key('change'),
'partial_update': self._make_permission_key('change'),
'delete': self._make_permission_key('delete'),
}
permission_map.update(self.permission_map)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='django-restful-admin',
version='1.1.2',
version='1.1.3',
description='Python Django RestFul Admin',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit b370fd6

Please sign in to comment.