artifacts!
This commit is contained in:
@@ -26,6 +26,10 @@ const ExecutionsPage = lazy(() => import("@/pages/executions/ExecutionsPage"));
|
||||
const ExecutionDetailPage = lazy(
|
||||
() => import("@/pages/executions/ExecutionDetailPage"),
|
||||
);
|
||||
const ArtifactsPage = lazy(() => import("@/pages/artifacts/ArtifactsPage"));
|
||||
const ArtifactDetailPage = lazy(
|
||||
() => import("@/pages/artifacts/ArtifactDetailPage"),
|
||||
);
|
||||
const EventsPage = lazy(() => import("@/pages/events/EventsPage"));
|
||||
const EventDetailPage = lazy(() => import("@/pages/events/EventDetailPage"));
|
||||
const EnforcementsPage = lazy(
|
||||
@@ -99,6 +103,11 @@ function App() {
|
||||
path="executions/:id"
|
||||
element={<ExecutionDetailPage />}
|
||||
/>
|
||||
<Route path="artifacts" element={<ArtifactsPage />} />
|
||||
<Route
|
||||
path="artifacts/:id"
|
||||
element={<ArtifactDetailPage />}
|
||||
/>
|
||||
<Route path="events" element={<EventsPage />} />
|
||||
<Route path="events/:id" element={<EventDetailPage />} />
|
||||
<Route path="enforcements" element={<EnforcementsPage />} />
|
||||
|
||||
Reference in New Issue
Block a user