]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8451 hide notifications link
authorStas Vilchik <vilchiks@gmail.com>
Thu, 8 Dec 2016 13:03:00 +0000 (14:03 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Thu, 8 Dec 2016 13:34:29 +0000 (14:34 +0100)
server/sonar-web/src/main/js/apps/account/components/Nav.js
server/sonar-web/src/main/js/apps/account/routes.js

index f1c94137e749d52d51fbac2d353a1143f113f1bb..1f9363f5f1ac376da6728677ad3c004a2aec93f9 100644 (file)
@@ -34,11 +34,6 @@ const Nav = () => (
             {translate('my_account.security')}
           </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')}
index 5a4539b065ac78ee56b240b16a990240d6b9bdbb..7314daf94ba97a6d9cb2d7700d6baa754354757f 100644 (file)
@@ -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={() => {