Skip to content

Commit

Permalink
Updated Swagger routers
Browse files Browse the repository at this point in the history
  • Loading branch information
oblodgett committed Sep 12, 2023
1 parent 2141154 commit ac4527d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions apps/main-app/src/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,22 @@ export default (
}}
/>

<Route
path='/swagger-ui'
render={(props) => {
window.location.href = `${props.location.pathname}${props.location.search}`;
return null;
}}
/>

<Route
path='/openapi'
render={(props) => {
window.location.href = `${props.location.pathname}${props.location.search}`;
return null;
}}
/>

<Route
path='/bluegenes'
render={(props) => {
Expand Down

0 comments on commit ac4527d

Please sign in to comment.