Merge pull request #15660 from nextcloud/objectstore-get

add method to get the used object store from the storage
This commit is contained in:
Roeland Jago Douma 2019-05-21 20:02:50 +02:00 committed by GitHub
commit 9daee196a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -476,4 +476,8 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
return $size;
}
public function getObjectStore(): IObjectStore {
return $this->objectStore;
}
}