We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c3b484 commit 519ce4eCopy full SHA for 519ce4e
1 file changed
irods/manager/metadata_manager.py
@@ -182,6 +182,7 @@ def apply_atomic_operations(self, model_cls, path, *avu_ops):
182
if not all(isinstance(op,AVUOperation) for op in avu_ops):
183
raise InvalidAtomicAVURequest("avu_ops must contain 1 or more AVUOperations")
184
request = {
185
+ "admin_mode": True if kw.ADMIN_KW in self.__kw.keys() else False,
186
"entity_name": path,
187
"entity_type": self._model_class_to_resource_description(model_cls),
188
"operations" : [self._avu_operation_to_dict(op) for op in avu_ops]
0 commit comments