Add tree-ish route placeholders, modify commit(s) routes
This commit is contained in:
parent
bde5088525
commit
a21abce94f
1 changed files with 11 additions and 1 deletions
|
@ -182,7 +182,10 @@ Gitlab::Application.routes.draw do
|
||||||
get :test
|
get :test
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
resources :commits do
|
|
||||||
|
resources :commit, only: [:show], constraints: {id: /[[:alnum:]]{6,40}/}
|
||||||
|
|
||||||
|
resources :commits, only: [:index, :show] do
|
||||||
collection do
|
collection do
|
||||||
get :compare
|
get :compare
|
||||||
end
|
end
|
||||||
|
@ -191,6 +194,7 @@ Gitlab::Application.routes.draw do
|
||||||
get :patch
|
get :patch
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
resources :team, controller: 'team_members', only: [:index]
|
resources :team, controller: 'team_members', only: [:index]
|
||||||
resources :team_members
|
resources :team_members
|
||||||
resources :milestones
|
resources :milestones
|
||||||
|
@ -208,6 +212,12 @@ Gitlab::Application.routes.draw do
|
||||||
post :preview
|
post :preview
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# XXX: WIP
|
||||||
|
# resources :blame, only: [:show], constraints: {id: /.+/}
|
||||||
|
# resources :blob, only: [:show], constraints: {id: /.+/}
|
||||||
|
# resources :raw, only: [:show], constraints: {id: /.+/}
|
||||||
|
# resources :tree, only: [:show], constraints: {id: /.+/}
|
||||||
end
|
end
|
||||||
|
|
||||||
root to: "dashboard#index"
|
root to: "dashboard#index"
|
||||||
|
|
Loading…
Add table
Reference in a new issue