diff options
Diffstat (limited to 'server/sonar-web/src/main/js/app/index.js')
-rw-r--r-- | server/sonar-web/src/main/js/app/index.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/app/index.js b/server/sonar-web/src/main/js/app/index.js index addf577ee07..107dc2ae53c 100644 --- a/server/sonar-web/src/main/js/app/index.js +++ b/server/sonar-web/src/main/js/app/index.js @@ -24,7 +24,9 @@ import { createHistory } from 'history'; import { Provider } from 'react-redux'; import App from './components/App'; import accountRoutes from '../apps/account/routes'; -import projectsRouters from '../apps/projects/routes'; +import projectsRoutes from '../apps/projects/routes'; +import qualityGatesRoutes from '../apps/quality-gates/routes'; +import qualityProfilesRoutes from '../apps/quality-profiles/routes'; import configureStore from '../components/store/configureStore'; import rootReducer from './store/rootReducer'; import './styles/index'; @@ -43,7 +45,9 @@ window.sonarqube.appStarted.then(options => { <Router history={history}> <Route path="/" component={App}> {accountRoutes} - {projectsRouters} + {projectsRoutes} + {qualityGatesRoutes} + {qualityProfilesRoutes} </Route> </Router> </Provider> |