Skip to content
Snippets Groups Projects
Commit 66205b61 authored by nagem's avatar nagem
Browse files

Allow projects to be archived

parent ee7faf3b
No related branches found
No related tags found
No related merge requests found
......@@ -132,8 +132,7 @@ class ContainerHandler(base.RequestHandler):
query = {par_cont_name[:-1]: par_id}
else:
query = {}
# only return unarchived sessions and acquisitions when includeArchived flag is present
if cont_name in ['sessions', 'acquisitions'] and not self.is_true('includeArchived'):
if not self.is_true('includeArchived'):
query['archived'] = {'$ne': True}
# this request executes the actual reqeust filtering containers based on the user permissions
results = permchecker(self.storage.exec_op)('GET', query=query, public=self.public_request, projection=projection)
......
......@@ -5,6 +5,7 @@
"allOf": [{"$ref": "container.json"}],
"properties": {
"public": {},
"archived": {},
"label": {},
"metadata": {},
......
......@@ -10,6 +10,7 @@
"permissions": {},
"files": {},
"public": {},
"archived": {},
"label": {},
"tags": {},
"metadata": {},
......
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