diff --git a/services/webapp/code/rosetta/core_app/api.py b/services/webapp/code/rosetta/core_app/api.py index feb7d9d3d60e1656692906516ac913a4ed8303c2..025a70113c900ede66a6573dfb4dd74f939e044d 100644 --- a/services/webapp/code/rosetta/core_app/api.py +++ b/services/webapp/code/rosetta/core_app/api.py @@ -702,12 +702,9 @@ class FileManagerAPI(PrivateGETAPI, PrivatePOSTAPI): for computing in computings: # For now, we only support SSH-based computing resources - if not 'ssh' in computing.access_method: + if not 'ssh' in computing.access_mode: continue - # Attach user conf in any - computing.attach_user_conf(request.user) - data['data'].append({ 'id': '/{}/'.format(computing.name), 'type': 'folder',