Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/dashboard_helper.rb')
-rw-r--r--app/helpers/dashboard_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/dashboard_helper.rb b/app/helpers/dashboard_helper.rb
index 267ccbd8c5d..31551fba862 100644
--- a/app/helpers/dashboard_helper.rb
+++ b/app/helpers/dashboard_helper.rb
@@ -22,9 +22,9 @@ module DashboardHelper
def controller_action_to_child_dashboards(controller = controller_name, action = action_name)
case "#{controller}##{action}"
when 'projects#index', 'root#index', 'projects#starred', 'projects#trending'
- %w(projects, 'stars)
+ %w(projects stars)
when 'dashboard#activity'
- %w(starred_project_activity, 'project_activity)
+ %w(starred_project_activity project_activity)
when 'groups#index'
%w(groups)
when 'todos#index'
@@ -38,7 +38,7 @@ module DashboardHelper
end
end
- def is_default_dashboard?(user = current_user)
+ def user_default_dashboard?(user = current_user)
controller_action_to_child_dashboards.any? {|dashboard| dashboard == user.dashboard }
end