From: David Gageot Date: Fri, 11 May 2012 09:55:28 +0000 (+0200) Subject: Fix which default project dashboard to display X-Git-Tag: 3.1~230 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d7ad8b78eb7773f852d75d2e9c0539695107053;p=sonarqube.git Fix which default project dashboard to display --- diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb index ab2f87e5b34..d01a2bd464c 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/dashboard_controller.rb @@ -156,7 +156,7 @@ class DashboardController < ApplicationController elsif params[:name] @active=ActiveDashboard.find(:first, :include => 'dashboard', :conditions => ['dashboards.name=? AND active_dashboards.user_id=?', params[:name], current_user.id]) else - @active=ActiveDashboard.find(:first, :include => 'dashboard', :conditions => ['active_dashboards.user_id=?', current_user.id], :order => 'order_index ASC') + @active=ActiveDashboard.user_dashboards(current_user).find { |a| !a.global? } end end @@ -167,7 +167,7 @@ class DashboardController < ApplicationController elsif params[:name] @active=ActiveDashboard.find(:first, :include => 'dashboard', :conditions => ['dashboards.name=? AND active_dashboards.user_id IS NULL', params[:name]]) else - @active=ActiveDashboard.find(:first, :include => 'dashboard', :conditions => ['active_dashboards.user_id IS NULL'], :order => 'order_index ASC') + @active=ActiveDashboard.user_dashboards(nil).find { |a| !a.global? } end end @dashboard=(@active ? @active.dashboard : nil)