diff options
author | Robin Appelman <robin@icewind.nl> | 2025-03-28 17:44:02 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2025-03-31 15:10:58 +0200 |
commit | 8aae332622587e7d3fc53c2a08be2f6fa61f9070 (patch) | |
tree | ce10b54081aa68ffcf16d46978e43a3e8d7aaf75 /lib/public/Files/ObjectStore/IObjectStoreMetaData.php | |
parent | 94114b99f74cbc8a77532e880042781f0edfcc0a (diff) | |
download | nextcloud-server-object-store-filename.tar.gz nextcloud-server-object-store-filename.zip |
feat: store original storage id and path in object store metadataobject-store-filename
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/Files/ObjectStore/IObjectStoreMetaData.php')
-rw-r--r-- | lib/public/Files/ObjectStore/IObjectStoreMetaData.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Files/ObjectStore/IObjectStoreMetaData.php b/lib/public/Files/ObjectStore/IObjectStoreMetaData.php index d5bf1ac065d..9683873be36 100644 --- a/lib/public/Files/ObjectStore/IObjectStoreMetaData.php +++ b/lib/public/Files/ObjectStore/IObjectStoreMetaData.php @@ -9,7 +9,7 @@ namespace OCP\Files\ObjectStore; /** * Interface IObjectStoreMetaData * - * @psalm-type ObjectMetaData = array{mtime?: \DateTime, etag?: string, size?: int, mimetype?: string, filename?: string} + * @psalm-type ObjectMetaData = array{mtime?: \DateTime, etag?: string, size?: int, mimetype?: string, filename?: string, original-path?: string, original-storage?: string} * * @since 32.0.0 */ |