Commit c058e390 authored by Robert Speicher's avatar Robert Speicher

Finalize new routes

parent 9d394250
......@@ -161,31 +161,25 @@ Gitlab::Application.routes.draw do
# XXX: WIP
resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/}
resources :commits, only: [:show], constraints: {id: /.+/}, as: 'history'
resources :commits, only: [:show], constraints: {id: /.+/}
resources :compare, only: [:index]
resources :blame, only: [:show], constraints: {id: /.+/}
resources :blob, only: [:show], constraints: {id: /.+/}
# resources :raw, only: [:show], constraints: {id: /.+/}
resources :tree, only: [:show], constraints: {id: /.+/}
resources :tree, only: [:show], constraints: {id: /.+/}
match "/compare/:from...:to" => "compare#show", as: "compare", constraints: {from: /.+/, to: /.+/}
# resources :commits, only: [:show], as: 'history' do
# member do
# get :patch
# end
# end
resources :team, controller: 'team_members', only: [:index]
resources :team_members
resources :milestones
resources :labels, only: [:index]
resources :issues do
collection do
post :sort
post :bulk_update
get :search
end
end
resources :notes, only: [:index, :create, :destroy] do
collection do
post :preview
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment