Added "Issues" dashboard

This shows issues assigned to you, across all your projects, in one
place.

References #173
This commit is contained in:
Ariejan de Vroom 2011-12-08 00:31:06 +01:00
parent 2552a877df
commit f512418b27
14 changed files with 165 additions and 20 deletions

View file

@ -1,5 +1,7 @@
Gitlab::Application.routes.draw do
get "user_issues/index"
get 'tags'=> 'tags#index'
get 'tags/:tag' => 'projects#index'
@ -21,6 +23,8 @@ Gitlab::Application.routes.draw do
put "profile/edit", :to => "profile#social_update"
get "profile", :to => "profile#show"
get "dashboard", :to => "dashboard#index"
get "issues", :to => "user_issues#index", :as => "issues"
#get "profile/:id", :to => "profile#show"
resources :projects, :only => [:new, :create, :index]