Skip to content

Commit

Permalink
Wire up the new HostSettings page in the app router
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonkopliku committed Jul 6, 2023
1 parent c209e63 commit 217f7d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assets/js/trento.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import { me } from '@lib/auth';
import { networkClient } from '@lib/network';
import Guard from '@components/Guard';
import CheckResultDetailPage from '@components/ExecutionResults/CheckResultDetail';
import HostSettings from '@components/HostSettings';
import DatabaseDetails from './components/DatabaseDetails';
import SapSystemDetails from './components/SapSystemDetails/SapSystemDetails';
import { store } from './state';
Expand Down Expand Up @@ -59,6 +60,10 @@ function App() {
<Route element={<Layout />}>
<Route index element={<Home />} />
<Route index path="hosts" element={<HostsList />} />
<Route
path="hosts/:hostID/settings"
element={<HostSettings />}
/>
<Route path="clusters" element={<ClustersList />} />
<Route path="sap_systems" element={<SapSystemsOverview />} />
<Route path="databases" element={<DatabasesOverview />} />
Expand Down

0 comments on commit 217f7d9

Please sign in to comment.