routes.rb 1.2 KB
Newer Older
G
gitlabhq 已提交
1 2 3 4 5 6 7 8 9 10 11 12
Gitlab::Application.routes.draw do
  namespace :admin do 
    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

G
gitlabhq 已提交
13
  get "errors/gitosis" 
G
gitlabhq 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  get "profile/password", :to => "profile#password"
  put "profile/password", :to => "profile#password_update"
  get "profile", :to => "profile#show"
  #get "profile/:id", :to => "profile#show"

  resources :projects, :only => [:new, :create, :index]
  resources :keys
  devise_for :users

  resources :projects, :except => [:new, :create, :index], :path => "/" do 
    member do 
      get "tree"
      get "blob"
      get "team"
      get "wall"

      # tree viewer
      get "tree/:commit_id" => "projects#tree"
      get "tree/:commit_id/:path" => "projects#tree",
      :as => :tree_file,
      :constraints => { 
        :id => /[a-zA-Z0-9]+/,
        :commit_id => /[a-zA-Z0-9]+/,
        :path => /.*/
      }

    end
    resources :commits
    resources :team_members
    resources :issues
    resources :notes, :only => [:create, :destroy]
  end
  root :to => "projects#index"
end