Commit dce7e285 authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

add fuse option allow_other

parent bec6b81b
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -241,4 +241,10 @@ class Command(BaseCommand):
        root_collection = Collection.objects.filter(pk=root_collection_id).first()
        if not root_collection:
            raise CommandError(f"{root_collection_id} is not a valid collection id")
        FUSE(Ops(root_collection), mount_point, nothreads=True, foreground=True)
        FUSE(
            Ops(root_collection),
            mount_point,
            nothreads=True,
            foreground=True,
            allow_other=True,
        )