2011-10-08 17:36:38 -04:00
|
|
|
Gitlab::Application.routes.draw do
|
2011-11-05 15:00:05 -04:00
|
|
|
|
|
|
|
get 'tags'=> 'tags#index'
|
|
|
|
get 'tags/:tag' => 'projects#index'
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
namespace :admin do
|
2011-10-08 17:36:38 -04:00
|
|
|
resources :users
|
|
|
|
resources :projects
|
|
|
|
resources :team_members
|
|
|
|
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-10-26 09:46:25 -04:00
|
|
|
get "errors/gitosis"
|
2011-10-08 17:36:38 -04:00
|
|
|
get "profile/password", :to => "profile#password"
|
|
|
|
put "profile/password", :to => "profile#password_update"
|
2011-11-15 08:08:20 -05:00
|
|
|
put "profile/reset_private_token", :to => "profile#reset_private_token"
|
2011-10-19 18:34:05 -04:00
|
|
|
put "profile/edit", :to => "profile#social_update"
|
2011-10-08 17:36:38 -04:00
|
|
|
get "profile", :to => "profile#show"
|
2011-10-31 16:57:16 -04:00
|
|
|
get "dashboard", :to => "dashboard#index"
|
2011-10-08 17:36:38 -04:00
|
|
|
#get "profile/:id", :to => "profile#show"
|
|
|
|
|
|
|
|
resources :projects, :only => [:new, :create, :index]
|
|
|
|
resources :keys
|
2011-11-05 15:00:05 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
devise_for :users
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
resources :projects, :except => [:new, :create, :index], :path => "/" do
|
|
|
|
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-11-16 00:38:53 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04: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:19:18 -05:00
|
|
|
get "tree", :constraints => { :id => /[a-zA-Z.0-9_\-]+/ }
|
2011-11-16 00:38:53 -05:00
|
|
|
get "blob"
|
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:19:18 -05:00
|
|
|
:id => /[a-zA-Z.0-9_\-]+/,
|
2011-11-16 00:38:53 -05:00
|
|
|
:path => /.*/
|
|
|
|
}
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
|
|
|
|
resources :snippets
|
2011-10-08 17:36:38 -04:00
|
|
|
resources :commits
|
|
|
|
resources :team_members
|
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
|
2011-10-08 17:36:38 -04:00
|
|
|
resources :notes, :only => [:create, :destroy]
|
|
|
|
end
|
2011-11-03 07:00:16 -04:00
|
|
|
root :to => "dashboard#index"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|