feat: Add file manager view using VueFinder
All checks were successful
Build Companion Agent / build (push) Successful in 32s
Test Asgard Runner / test (push) Successful in 3s

Installs VueFinder and wires it to the backend /api/files endpoint with
JWT Bearer auth. Adds /files route, File Manager nav item (files.view
permission-gated, FolderOpen icon), and imports VueFinder CSS globally.
Driver token is computed reactively so it tracks token refreshes automatically.
Uses midnight theme to match the dark admin panel aesthetic.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell
2026-02-21 16:13:10 -05:00
parent e9f9b449b1
commit 2df5c80928
6 changed files with 645 additions and 2 deletions

View File

@@ -105,6 +105,11 @@ const panelRoutes: RouteRecordRaw[] = [
name: 'plugins',
component: () => import('@/views/admin/PluginsView.vue'),
},
{
path: 'files',
name: 'files',
component: () => import('@/views/admin/FileManagerView.vue'),
},
{
path: 'wipes',
name: 'wipes',