summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-09 14:12:03 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-03-09 14:12:03 -0700
commitd36ee3190aa1fb8c1238967a3049d5b8271c9030 (patch)
tree995900bb2a7370e54f67f83b6d172446074ae9dc /config
parente89ffd546eafad4e03ce5b17b5c9147b70afeedc (diff)
downloadgitlab-ce-d36ee3190aa1fb8c1238967a3049d5b8271c9030.tar.gz
Add starred projects page to dashboard
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 1b855cd7a32..637b855e661 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -221,6 +221,12 @@ Gitlab::Application.routes.draw do
delete :leave
end
end
+
+ resources :projects, only: [] do
+ collection do
+ get :starred
+ end
+ end
end
end