Skip to content
Snippets Groups Projects
Commit 0f28dcf8 authored by Megan Henning's avatar Megan Henning
Browse files

Fix rw perms for non-project post

parent 46ccfc96
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ def default_container(handler, container=None, target_parent_container=None):
has_access = _get_access(handler.uid, container) >= INTEGER_PERMISSIONS['ro']
elif method == 'POST':
required_perm = 'rw'
if target_parent_container.get('permissions'):
if target_parent_container.get('cont_name') == 'group':
# Create project on group, require admin
required_perm = 'admin'
has_access = _get_access(handler.uid, target_parent_container) >= INTEGER_PERMISSIONS[required_perm]
......
......@@ -18,6 +18,8 @@ CHILD_MAP = {
'sessions': 'acquisitions'
}
PARENT_MAP = {v: k for k,v in CHILD_MAP.iteritems()}
# All "containers" are required to return these fields
# 'All' includes users
BASE_DEFAULTS = {
......
......@@ -589,6 +589,7 @@ class ContainerHandler(base.RequestHandler):
parent_container = parent_storage.get_container(parent_id)
if parent_container is None:
self.abort(404, 'Element {} not found in container {}'.format(parent_id, parent_storage.cont_name))
parent_container['cont_name'] = parent_storage.cont_name[:-1]
else:
parent_container = None
return parent_container, parent_id_property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment