aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-05-14 14:09:25 +0200
committerDavid Gageot <david@gageot.net>2012-05-14 14:09:25 +0200
commitf1bb3dd2a87aea499f550eee4b0f37412f91ab53 (patch)
tree63871d8ebfe65327fc61c8a95c93d3ff3418e4b5 /sonar-server
parentf3de26175982ed74dfdcabcf32387745033975e6 (diff)
downloadsonarqube-f1bb3dd2a87aea499f550eee4b0f37412f91ab53.tar.gz
sonarqube-f1bb3dd2a87aea499f550eee4b0f37412f91ab53.zip
"My Filters" is now available to every user.
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb
index f79d06f67d0..6e61d766e14 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/layouts/_layout.html.erb
@@ -117,14 +117,14 @@
<% if current_user %>
<li class="<%= 'selected' if controller.controller_path=='account' -%>">
<a href="<%= ApplicationController.root_context -%>/account/index"><%= message('my_profile.page') -%></a></li>
+ <li class="<%= 'selected' if controller.controller_path=='filters' -%>">
+ <a href="<%= ApplicationController.root_context -%>/filters/manage"><%= message('default_filters.page') -%></a></li>
<% end %>
<% if is_admin? %>
<li class="<%= 'selected' if controller.controller_path=='metrics' -%>">
<a href="<%= ApplicationController.root_context -%>/metrics/index"><%= message('manual_metrics.page') -%></a></li>
<li class="<%= 'selected' if controller.controller_path=='manual_rules' -%>">
<a href="<%= ApplicationController.root_context -%>/manual_rules/index"><%= message('manual_rules.page') -%></a></li>
- <li class="<%= 'selected' if controller.controller_path=='admin_filters' -%>">
- <a href="<%= ApplicationController.root_context -%>/filters/manage"><%= message('default_filters.page') -%></a></li>
<li class="<%= 'selected' if controller.controller_path=='admin_dashboards' -%>">
<a href="<%= ApplicationController.root_context -%>/admin_dashboards/index"><%= message('default_dashboards.page') -%></a></li>
<% controller.java_facade.getPages(Navigation::SECTION_CONFIGURATION, nil, nil, nil, nil).each do |page|