Implement move menu tree, hover tooltips, and custom icons
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m20s

This commit is contained in:
Elijah 2026-05-23 08:13:19 -07:00
parent 3802d978ed
commit e1f009f273
4 changed files with 229 additions and 65 deletions

View file

@ -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();