specify HTTP verbs for match in routes
This commit is contained in:
parent
74213534bc
commit
9e4f3147a0
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue