diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-05-29 00:09:28 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-05-29 00:09:28 -0400 |
commit | f46b3670680ba9d07a2745299764990c944c48a8 (patch) | |
tree | fa578307d3762eaac7d6177f2eb71c7d3b615ea0 /config | |
parent | cef8ab460402b46002c0a25e90418f6920bb3c18 (diff) | |
download | gitlab-ce-f46b3670680ba9d07a2745299764990c944c48a8.tar.gz |
Add MergeRequests#commits action and route
/:namespace_id/:project_id/merge_requests/:id/commits(.:format)
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index bf2cb6421c5..3f8f920963d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -450,6 +450,7 @@ Gitlab::Application.routes.draw do resources :merge_requests, constraints: { id: /\d+/ }, except: [:destroy] do member do get :diffs + get :commits post :automerge get :automerge_check get :ci_status |