Restrict auto generated routes

This commit is contained in:
Dmitriy Zaporozhets 2013-06-22 15:11:23 +03:00
parent 102aaf0682
commit 96f3a88c01
1 changed files with 4 additions and 4 deletions

View File

@ -113,8 +113,8 @@ Gitlab::Application.routes.draw do
put :update_username put :update_username
end end
resource :notifications resource :notifications, only: [:show, :update]
resource :password resource :password, only: [:new, :create]
end end
resources :keys resources :keys
@ -125,7 +125,7 @@ Gitlab::Application.routes.draw do
# #
# Dashboard Area # Dashboard Area
# #
resource :dashboard, controller: "dashboard" do resource :dashboard, controller: "dashboard", only: [:show] do
member do member do
get :projects get :projects
get :issues get :issues
@ -198,7 +198,7 @@ Gitlab::Application.routes.draw do
end end
end end
resource :repository do resource :repository, only: [:show] do
member do member do
get "branches" get "branches"
get "tags" get "tags"