2011-10-08 17:36:38 -04:00
|
|
|
Gitlab::Application.routes.draw do
|
2012-03-15 19:14:39 -04:00
|
|
|
get 'search' => "search#show"
|
2012-02-19 09:35:31 -05:00
|
|
|
|
2011-12-12 17:03:38 -05:00
|
|
|
# Optionally, enable Resque here
|
2012-01-03 17:42:14 -05:00
|
|
|
require 'resque/server'
|
|
|
|
mount Resque::Server.new, at: '/info/resque'
|
2011-12-07 18:31:06 -05:00
|
|
|
|
2012-01-18 15:15:45 -05:00
|
|
|
get 'help' => 'help#index'
|
2012-02-15 16:51:04 -05:00
|
|
|
get 'help/permissions' => 'help#permissions'
|
|
|
|
get 'help/workflow' => 'help#workflow'
|
2012-03-28 03:46:51 -04:00
|
|
|
get 'help/web_hooks' => 'help#web_hooks'
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
namespace :admin do
|
2012-02-11 12:56:18 -05:00
|
|
|
resources :users do
|
|
|
|
member do
|
|
|
|
put :team_update
|
2012-04-16 16:33:03 -04:00
|
|
|
put :block
|
|
|
|
put :unblock
|
2012-02-11 12:56:18 -05:00
|
|
|
end
|
|
|
|
end
|
2012-01-21 11:06:14 -05:00
|
|
|
resources :projects, :constraints => { :id => /[^\/]+/ } do
|
|
|
|
member do
|
|
|
|
get :team
|
|
|
|
put :team_update
|
|
|
|
end
|
|
|
|
end
|
2012-02-11 12:56:18 -05:00
|
|
|
resources :team_members, :only => [:edit, :update, :destroy]
|
2011-10-08 17:36:38 -04:00
|
|
|
get 'emails', :to => 'mailer#preview'
|
|
|
|
get 'mailer/preview_note'
|
|
|
|
get 'mailer/preview_user_new'
|
|
|
|
get 'mailer/preview_issue_new'
|
2012-04-20 12:41:49 -04:00
|
|
|
root :to => "dashboard#index"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-12-05 02:43:53 -05:00
|
|
|
get "errors/githost"
|
2011-10-08 17:36:38 -04:00
|
|
|
get "profile/password", :to => "profile#password"
|
|
|
|
put "profile/password", :to => "profile#password_update"
|
2012-05-19 05:00:46 -04:00
|
|
|
get "profile/token", :to => "profile#token"
|
2011-11-15 08:08:20 -05:00
|
|
|
put "profile/reset_private_token", :to => "profile#reset_private_token"
|
2011-10-08 17:36:38 -04:00
|
|
|
get "profile", :to => "profile#show"
|
2011-12-20 15:47:09 -05:00
|
|
|
get "profile/design", :to => "profile#design"
|
|
|
|
put "profile/update", :to => "profile#update"
|
2011-12-08 15:17:53 -05:00
|
|
|
|
|
|
|
get "dashboard/issues", :to => "dashboard#issues"
|
|
|
|
get "dashboard/merge_requests", :to => "dashboard#merge_requests"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-12-12 13:13:11 -05:00
|
|
|
resources :projects, :constraints => { :id => /[^\/]+/ }, :only => [:new, :create, :index]
|
2011-10-08 17:36:38 -04:00
|
|
|
resources :keys
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2012-01-28 08:23:17 -05:00
|
|
|
devise_for :users, :controllers => { :omniauth_callbacks => :omniauth_callbacks }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-12-12 13:13:11 -05:00
|
|
|
resources :projects, :constraints => { :id => /[^\/]+/ }, :except => [:new, :create, :index], :path => "/" do
|
2011-10-26 09:46:25 -04:00
|
|
|
member do
|
2011-10-08 17:36:38 -04:00
|
|
|
get "team"
|
|
|
|
get "wall"
|
2011-11-12 17:30:51 -05:00
|
|
|
get "graph"
|
2011-12-28 02:38:50 -05:00
|
|
|
get "files"
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-02-19 14:52:05 -05:00
|
|
|
resources :wikis, :only => [:show, :edit, :destroy, :create] do
|
|
|
|
member do
|
2012-02-20 12:16:55 -05:00
|
|
|
get "history"
|
2012-02-19 14:52:05 -05:00
|
|
|
end
|
|
|
|
end
|
2012-02-19 12:05:35 -05:00
|
|
|
|
2011-12-31 06:12:10 -05:00
|
|
|
resource :repository do
|
|
|
|
member do
|
|
|
|
get "branches"
|
|
|
|
get "tags"
|
2012-02-07 18:00:49 -05:00
|
|
|
get "archive"
|
2011-12-31 06:12:10 -05:00
|
|
|
end
|
|
|
|
end
|
2011-12-30 15:56:13 -05:00
|
|
|
|
2011-12-29 14:44:16 -05:00
|
|
|
resources :deploy_keys
|
2012-02-15 15:02:33 -05:00
|
|
|
resources :protected_branches, :only => [:index, :create, :destroy]
|
2011-12-29 14:44:16 -05:00
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
resources :refs, :only => [], :path => "/" do
|
2011-11-16 12:19:18 -05:00
|
|
|
collection do
|
|
|
|
get "switch"
|
|
|
|
end
|
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
member do
|
2011-11-16 12:30:17 -05:00
|
|
|
get "tree", :constraints => { :id => /[a-zA-Z.\/0-9_\-]+/ }
|
|
|
|
get "blob",
|
|
|
|
:constraints => {
|
|
|
|
:id => /[a-zA-Z.0-9\/_\-]+/,
|
|
|
|
:path => /.*/
|
|
|
|
}
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
# tree viewer
|
|
|
|
get "tree/:path" => "refs#tree",
|
|
|
|
:as => :tree_file,
|
|
|
|
:constraints => {
|
2011-11-16 12:30:17 -05:00
|
|
|
:id => /[a-zA-Z.0-9\/_\-]+/,
|
2011-11-16 00:38:53 -05:00
|
|
|
:path => /.*/
|
|
|
|
}
|
2012-05-17 12:11:45 -04:00
|
|
|
|
|
|
|
# blame
|
|
|
|
get "blame/:path" => "refs#blame",
|
|
|
|
:as => :blame_file,
|
|
|
|
:constraints => {
|
|
|
|
:id => /[a-zA-Z.0-9\/_\-]+/,
|
|
|
|
:path => /.*/
|
|
|
|
}
|
2011-11-16 00:38:53 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2011-11-28 15:16:57 -05:00
|
|
|
resources :merge_requests do
|
|
|
|
member do
|
|
|
|
get :diffs
|
2012-03-29 11:03:05 -04:00
|
|
|
get :automerge
|
2012-04-16 15:08:03 -04:00
|
|
|
get :automerge_check
|
2011-11-28 15:16:57 -05:00
|
|
|
end
|
2012-03-13 17:54:49 -04:00
|
|
|
|
|
|
|
collection do
|
|
|
|
get :branch_from
|
|
|
|
get :branch_to
|
|
|
|
end
|
2011-11-28 15:16:57 -05:00
|
|
|
end
|
2012-01-03 17:42:14 -05:00
|
|
|
|
2011-10-16 17:07:10 -04:00
|
|
|
resources :snippets
|
2012-04-26 13:43:12 -04:00
|
|
|
resources :hooks, :only => [:index, :create, :destroy] do
|
2012-01-08 05:20:24 -05:00
|
|
|
member do
|
|
|
|
get :test
|
|
|
|
end
|
|
|
|
end
|
2012-02-06 15:32:04 -05:00
|
|
|
resources :commits do
|
|
|
|
collection do
|
|
|
|
get :compare
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
resources :team_members
|
2012-04-08 17:28:58 -04:00
|
|
|
resources :milestones
|
2011-10-15 12:56:53 -04:00
|
|
|
resources :issues do
|
|
|
|
collection do
|
2011-11-15 03:55:57 -05:00
|
|
|
post :sort
|
|
|
|
get :search
|
2011-10-22 00:06:38 -04:00
|
|
|
end
|
2011-10-15 12:56:53 -04:00
|
|
|
end
|
2012-02-24 02:16:06 -05:00
|
|
|
resources :notes, :only => [:index, :create, :destroy]
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-04-14 04:20:45 -04:00
|
|
|
root :to => "projects#index"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|