Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-12 00:00:00 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-12 17:19:14 +0400
commitbd34ca3c33a56550a1b42b8c150bdba61c96bfbd (patch)
tree8a4dfb097ba4e6666dc2f6565e4e71100d27db3a /app/controllers
parent495d29da738c8ac53406110d7c3af3f6a3a59bfc (diff)
project tile view
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/dashboard_controller.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/dashboard_controller.rb b/app/controllers/dashboard_controller.rb
index e1192e4dc5d..2476b17ef90 100644
--- a/app/controllers/dashboard_controller.rb
+++ b/app/controllers/dashboard_controller.rb
@@ -1,2 +1,5 @@
class DashboardController < ApplicationController
+ def index
+ @projects = current_user.projects.all
+ end
end