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