Commit 1a12b011 authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

add user to objectstore delete call

parent 96177a56
Loading
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -229,6 +229,7 @@ class ObjectStore(metaclass=abc.ABCMeta):
        extra_dir_at_root=False,
        alt_name=None,
        obj_dir: bool = False,
        user = None,
    ) -> bool:
        """
        Delete the object identified by `obj`.
@@ -586,6 +587,7 @@ class BaseObjectStore(ObjectStore):
        extra_dir_at_root=False,
        alt_name=None,
        obj_dir: bool = False,
        user=None,
    ) -> bool:
        return self._invoke(
            "delete",
@@ -597,6 +599,7 @@ class BaseObjectStore(ObjectStore):
            extra_dir_at_root=extra_dir_at_root,
            alt_name=alt_name,
            obj_dir=obj_dir,
            user=user,
        )

    def get_data(