gitlab-org--gitlab-foss/app/controllers/root_controller.rb

29 lines
687 B
Ruby
Raw Normal View History

# RootController
#
# This controller exists solely to handle requests to `root_url`. When a user is
# logged in and has customized their `dashboard` setting, they will be
# redirected to their preferred location.
#
# For users who haven't customized the setting, we simply delegate to
# `DashboardController#show`, which is the default.
class RootController < DashboardController
2015-06-13 00:53:58 +00:00
before_action :redirect_to_custom_dashboard, only: [:show]
def show
2015-06-13 00:53:58 +00:00
super
end
private
def redirect_to_custom_dashboard
return unless current_user
case current_user.dashboard
when 'stars'
redirect_to starred_dashboard_projects_path
else
2015-06-13 00:53:58 +00:00
return
end
end
end