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
path: root/config
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-09-16 17:21:20 +0400
committerRobert Speicher <rspeicher@gmail.com>2012-09-16 18:07:06 +0400
commit95bd93fe1aad3efbe2c8cc7b255a98ddb27d2d35 (patch)
treed335b1dd18641df977eb28d8219fcf7984ed9c5e /config
parent8cfb197dfcad3aa0c11f7afd34e4c7bfef953d1d (diff)
Remove Projects#team action
Uses TeamMembers#index instead, to be more RESTful
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index c226a4738a5..cfb9bdb957c 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -90,7 +90,6 @@ Gitlab::Application.routes.draw do
#
resources :projects, constraints: { id: /[^\/]+/ }, except: [:new, :create, :index], path: "/" do
member do
- get "team"
get "wall"
get "graph"
get "files"
@@ -192,6 +191,7 @@ Gitlab::Application.routes.draw do
get :patch
end
end
+ resources :team, controller: 'team_members', only: [:index]
resources :team_members
resources :milestones
resources :labels, only: [:index]