Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
8ae13c7a
Commit
8ae13c7a
authored
Jun 12, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor RootController
parent
d2894a39
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
app/controllers/root_controller.rb
app/controllers/root_controller.rb
+12
-2
No files found.
app/controllers/root_controller.rb
View file @
8ae13c7a
...
...
@@ -7,12 +7,22 @@
# For users who haven't customized the setting, we simply delegate to
# `DashboardController#show`, which is the default.
class
RootController
<
DashboardController
before_action
:redirect_to_custom_dashboard
,
only:
[
:show
]
def
show
case
current_user
.
try
(
:dashboard
)
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
super
return
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment