1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 07:41:26 +00:00

add video details and extract button (#6908)

* add video details and extract button

* update

* update

* update

---------

Co-authored-by: zheng.shen <zheng.shen@seafile.com>
This commit is contained in:
shenzheng-1
2024-10-18 13:25:10 +08:00
committed by GitHub
parent 058b95362e
commit 9fbc7a8d34
9 changed files with 151 additions and 6 deletions

View File

@@ -218,6 +218,11 @@ class Context {
const lang = this.settings['lang'];
return this.metadataAPI.imageCaption(repoID, filePath, lang);
};
extractFileDetails = (objIds) => {
const repoID = this.settings['repoID'];
return this.metadataAPI.extractFileDetails(repoID, objIds);
};
}
export default Context;