From 96f3a88c0111b56cce8ac77b7c48225510b2b73b Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sat, 22 Jun 2013 15:11:23 +0300 Subject: Restrict auto generated routes --- config/routes.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'config') diff --git a/config/routes.rb b/config/routes.rb index 1b184fcac0b..3b6a861b668 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -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" -- cgit v1.2.3