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