diff --git a/services/webapp/code/rosetta/core_app/api.py b/services/webapp/code/rosetta/core_app/api.py
index 898e890e10ac35ccf72dc776d4360cce3a819ed0..7490d02269a456bfadbddd80b6a93b808b0f6285 100644
--- a/services/webapp/code/rosetta/core_app/api.py
+++ b/services/webapp/code/rosetta/core_app/api.py
@@ -840,7 +840,7 @@ class FileManagerAPI(PrivateGETAPI, PrivatePOSTAPI):
                 data = {'data':[]}
                 
                 # Get storages
-                storages = list(Storage.objects.filter(group=None)) + list(Storage.objects.filter(group__user=request.user))
+                storages = list(Storage.objects.filter(group=None,browsable=True)) + list(Storage.objects.filter(group__user=request.user,browsable=True))
                 
                 # Oder storages (re-orderded in the file manager anyway)
                 storages.sort(key=lambda storage: storage.id)
diff --git a/services/webapp/code/rosetta/core_app/migrations/0033_auto_20220410_1531.py b/services/webapp/code/rosetta/core_app/migrations/0033_auto_20220410_1531.py
new file mode 100644
index 0000000000000000000000000000000000000000..c1f8ae60ecc09e1333e9af5c8bb6b8ef9373ec3b
--- /dev/null
+++ b/services/webapp/code/rosetta/core_app/migrations/0033_auto_20220410_1531.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.1 on 2022-04-10 15:31
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('core_app', '0032_auto_20220409_1813'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='storage',
+            name='browsable',
+            field=models.BooleanField(default=True, verbose_name='Browsable in the file manager?'),
+        ),
+    ]
diff --git a/services/webapp/code/rosetta/core_app/models.py b/services/webapp/code/rosetta/core_app/models.py
index 0b7b8c743fa5916bda1de69e4b7d103748a71746..76389f1d8fb26837e5132f11c8d1760faa056f07 100644
--- a/services/webapp/code/rosetta/core_app/models.py
+++ b/services/webapp/code/rosetta/core_app/models.py
@@ -394,7 +394,7 @@ class Storage(models.Model):
     conf = JSONField(blank=True, null=True)
  
     # Include as browsable in the file manager?
-    browsable = models.BooleanField('Browsable in the file manager?', default=False)
+    browsable = models.BooleanField('Browsable in the file manager?', default=True)
 
  
     class Meta: