Files
cproudlock 27f76ee964 frontend: declare the empty toplevel export the codegen reads
routes.gen.js spreads `.toplevel` for every plugin uniformly, but only a
few own full-screen routes, so Rollup warned on eleven of them every
build. The `|| []` guard was always doing its job - the warning was noise,
and noise in a build log is where a real warning goes to hide.
2026-08-12 11:43:57 -04:00

27 lines
1.0 KiB
JavaScript

/**
* Backups plugin routes.
*
* One route: the per-asset revision history. The asset-detail panel (ADR-010
* Path A) lists recent revisions but the generic renderer has no per-item
* actions, and downloading a .reg needs a per-revision control plus a dialect
* choice. So the panel links here via its manage link rather than the renderer
* growing a backups-shaped feature.
*
* meta.plugin = 'backups' so the ADR-009 guard redirects when the backend
* plugin is disabled. requiresAuth because every backups API route is behind
* JWT + a backups.* permission; an anonymous visit would only render errors.
*/
export default [
{
path: 'backups/asset/:assetid',
name: 'backups-asset-history',
component: () => import('./views/BackupHistory.vue'),
meta: { requiresAuth: true, plugin: 'backups' }
}
]
// No full-screen routes: every view in this plugin renders inside
// AppLayout. Declared so routes.gen.js can read `.toplevel` off the module
// without Rollup warning about a missing export.
export const toplevel = []