Commit 96f3a88c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Restrict auto generated routes

parent 102aaf06
......@@ -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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment