diff --git a/ckan/new_authz.py b/ckan/new_authz.py index 6f3494fadb1..c3b6a40ed65 100644 --- a/ckan/new_authz.py +++ b/ckan/new_authz.py @@ -63,7 +63,7 @@ def is_authorized(action, context, data_dict=None): # these are the premissions that roles have ROLE_PERMISSIONS = { 'admin': ['admin'], - 'editor': ['read', 'update', 'delete_dataset', 'create_dataset'], + 'editor': ['read', 'update', 'delete_dataset', 'create_dataset', 'update_dataset'], 'member': [''], }