summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2016-07-08 22:50:06 +0100
committerSean McGivern <sean@gitlab.com>2016-07-11 09:31:34 +0100
commit5266ae87c43a6760600e397257f9791d950dbe15 (patch)
tree83e840670b4c772020be590e5934586fe746df6e /config
parente462e122784f40550c53224af5a58b201ed1fd8f (diff)
downloadgitlab-ce-5266ae87c43a6760600e397257f9791d950dbe15.tar.gz
Support renames in diff_for_path actions
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/routes.rb b/config/routes.rb
index f31f8171993..b4f83c58bbd 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -615,13 +615,13 @@ Rails.application.routes.draw do
post :retry_builds
post :revert
post :cherry_pick
- get '/diffs/*path', action: :diff_for_path, constraints: { format: false }
+ get :diff_for_path
end
end
resources :compare, only: [:index, :create] do
collection do
- get '/diffs/*path', action: :diff_for_path, constraints: { format: false }
+ get :diff_for_path
end
end
@@ -711,14 +711,14 @@ Rails.application.routes.draw do
post :toggle_subscription
post :toggle_award_emoji
post :remove_wip
- get '/diffs/*path', action: :diff_for_path, constraints: { format: false }
+ get :diff_for_path
end
collection do
get :branch_from
get :branch_to
get :update_branches
- get '/diffs/*path', action: :diff_for_path, constraints: { format: false }
+ get :diff_for_path
end
end