diff --git a/web/src/data/icons.js b/web/src/data/icons.js index bb698bb..4b2f46a 100644 --- a/web/src/data/icons.js +++ b/web/src/data/icons.js @@ -9,6 +9,7 @@ export const icons = { skill: iconPath(''), users: iconPath(''), audit: iconPath(''), + logs: iconPath(''), settings: iconPath(''), search: iconPath(''), check: iconPath(''), diff --git a/web/src/router/index.js b/web/src/router/index.js index 5474fdf..922c1b9 100644 --- a/web/src/router/index.js +++ b/web/src/router/index.js @@ -69,6 +69,15 @@ const router = createRouter({ appView: 'requests' } }, + { + path: '/app/logs/:logKind/:logId', + name: 'app-log-detail', + component: AppShellRouteView, + meta: { + requiresAuth: true, + appView: 'logs' + } + }, ...appChildRoutes.map((route) => ({ ...route, path: `/app/${route.path}`