diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-12-08 14:03:00 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-12-08 14:34:29 +0100 |
commit | 0c94c4806ef2c3e918a8da52337d0d838b299459 (patch) | |
tree | 54a6aa3229657e0e5afa2a009cba61a22b2989a5 /server | |
parent | 821b2de67a214807397ccd360659fe6e3d56363a (diff) | |
download | sonarqube-0c94c4806ef2c3e918a8da52337d0d838b299459.tar.gz sonarqube-0c94c4806ef2c3e918a8da52337d0d838b299459.zip |
SONAR-8451 hide notifications link
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/apps/account/components/Nav.js | 5 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/account/routes.js | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/server/sonar-web/src/main/js/apps/account/components/Nav.js b/server/sonar-web/src/main/js/apps/account/components/Nav.js index f1c94137e74..1f9363f5f1a 100644 --- a/server/sonar-web/src/main/js/apps/account/components/Nav.js +++ b/server/sonar-web/src/main/js/apps/account/components/Nav.js @@ -35,11 +35,6 @@ const Nav = () => ( </Link> </li> <li> - <Link to="/account/notifications/" activeClassName="active"> - {translate('my_account.notifications')} - </Link> - </li> - <li> <Link to="/account/projects/" activeClassName="active"> {translate('my_account.projects')} </Link> diff --git a/server/sonar-web/src/main/js/apps/account/routes.js b/server/sonar-web/src/main/js/apps/account/routes.js index 5a4539b065a..7314daf94ba 100644 --- a/server/sonar-web/src/main/js/apps/account/routes.js +++ b/server/sonar-web/src/main/js/apps/account/routes.js @@ -21,7 +21,6 @@ import React from 'react'; import { Route, IndexRoute } from 'react-router'; import Account from './components/Account'; import ProjectsContainer from './projects/ProjectsContainer'; -import NotificationsContainer from './notifications/NotificationsContainer'; import Security from './components/Security'; import Profile from './profile/Profile'; @@ -29,7 +28,6 @@ export default ( <Route component={Account}> <IndexRoute component={Profile}/> <Route path="security" component={Security}/> - <Route path="notifications" component={NotificationsContainer}/> <Route path="projects" component={ProjectsContainer}/> <Route path="issues" onEnter={() => { |