Implement move menu tree, hover tooltips, and custom icons
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m20s
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m20s
This commit is contained in:
parent
3802d978ed
commit
e1f009f273
4 changed files with 229 additions and 65 deletions
|
|
@ -151,6 +151,11 @@ class ApiClient {
|
|||
return res.json();
|
||||
}
|
||||
|
||||
async getFolderTree() {
|
||||
const res = await this.request('/api/files/folders-tree');
|
||||
return res.json();
|
||||
}
|
||||
|
||||
async getExtendedFileInfo(path: string) {
|
||||
const res = await this.request(`/api/files/info/?path=${encodeURIComponent(path)}`);
|
||||
return res.json();
|
||||
|
|
|
|||
Reference in a new issue