- Fix equipment badge barcode not rendering (loading race condition) - Fix printer QR code not rendering on initial load (same race condition) - Add model image to equipment badge via imageurl from Model table - Fix white-on-white machine number text on badge, tighten barcode spacing - Add PaginationBar component used across all list pages - Split monolithic router into per-plugin route modules - Fix 25 GET API endpoints returning 401 (jwt_required -> optional=True) - Align list page columns across Equipment, PCs, and Network pages - Add print views: EquipmentBadge, PrinterQRSingle, PrinterQRBatch, USBLabelBatch - Add PC Relationships report, migration docs, and CLAUDE.md project guide - Various plugin model, API, and frontend refinements Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
764 B
JavaScript
28 lines
764 B
JavaScript
/**
|
|
* Knowledge Base routes (core feature)
|
|
*/
|
|
export default [
|
|
{
|
|
path: 'knowledgebase',
|
|
name: 'knowledgebase',
|
|
component: () => import('../../views/knowledgebase/KnowledgeBaseList.vue')
|
|
},
|
|
{
|
|
path: 'knowledgebase/new',
|
|
name: 'knowledgebase-new',
|
|
component: () => import('../../views/knowledgebase/KnowledgeBaseForm.vue'),
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: 'knowledgebase/:id',
|
|
name: 'knowledgebase-detail',
|
|
component: () => import('../../views/knowledgebase/KnowledgeBaseDetail.vue')
|
|
},
|
|
{
|
|
path: 'knowledgebase/:id/edit',
|
|
name: 'knowledgebase-edit',
|
|
component: () => import('../../views/knowledgebase/KnowledgeBaseForm.vue'),
|
|
meta: { requiresAuth: true }
|
|
}
|
|
]
|