Skip to content

Commit

Permalink
#887 add alternative legacy routes to workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Apr 23, 2024
1 parent 86823d9 commit 3db4fb0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions applications/osb-portal/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,26 @@ export const App = (props: AppProps) => {
</ProtectedRoute>
}
/>
<Route
path="/workspace/:workspaceId"
element={
<SidebarPageLayout>
<WorkspacePage />
</SidebarPageLayout>
}
/>
<Route
path="/workspace/open/:workspaceId/:app"
element={<ProtectedRoute><WorkspaceOpenPage /></ProtectedRoute>}
/>
<Route
path="/workspace/open/:workspaceId"
element={
<ProtectedRoute>
<WorkspaceOpenPage />
</ProtectedRoute>
}
/>
<Route
path="/repositories"
element={
Expand Down

0 comments on commit 3db4fb0

Please sign in to comment.