summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorCamil Staps <info@camilstaps.nl>2019-01-25 21:53:00 +0100
committerCamil Staps <info@camilstaps.nl>2019-08-07 20:49:13 +0200
commit59976090b52d401dc4d23b726b2168186524f269 (patch)
tree503fb6f0563c866ea1776be3f5ad6bf88672ae92 /config
parent5b20df0a9276bc1250dc8b307adb161b24d9c255 (diff)
downloadgitlab-ce-59976090b52d401dc4d23b726b2168186524f269.tar.gz
Add /starrers view for projects
Diffstat (limited to 'config')
-rw-r--r--config/routes/project.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 3113cb172f7..380ecad001d 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -170,7 +170,9 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
get :recent
end
end
+
resources :releases, only: [:index]
+ resources :starrers, only: [:index]
resources :forks, only: [:index, :new, :create]
resources :group_links, only: [:index, :create, :update, :destroy], constraints: { id: /\d+/ }