specify HTTP verbs for match in routes

This commit is contained in:
Nihad Abbasov 2012-10-05 05:22:01 -07:00
parent 74213534bc
commit 9e4f3147a0
1 changed files with 2 additions and 1 deletions

View File

@ -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