From 9e4f3147a0f4b352ba243a03f76daade3dcee056 Mon Sep 17 00:00:00 2001 From: Nihad Abbasov Date: Fri, 5 Oct 2012 05:22:01 -0700 Subject: [PATCH] specify HTTP verbs for match in routes --- config/routes.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 060fbf16793..54b298c961f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -184,7 +184,8 @@ Gitlab::Application.routes.draw do resources :blame, only: [:show], constraints: {id: /.+/} resources :blob, only: [:show], constraints: {id: /.+/} resources :tree, only: [:show], constraints: {id: /.+/} - match "/compare/:from...:to" => "compare#show", as: "compare", constraints: {from: /.+/, to: /.+/} + match "/compare/:from...:to" => "compare#show", as: "compare", + :via => [:get, :post], constraints: {from: /.+/, to: /.+/} resources :team, controller: 'team_members', only: [:index] resources :team_members