summaryrefslogtreecommitdiff
path: root/app/controllers/dashboard/application_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/dashboard/application_controller.rb')
-rw-r--r--app/controllers/dashboard/application_controller.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/dashboard/application_controller.rb b/app/controllers/dashboard/application_controller.rb
index 962ea38d6c9..9d3d1c23c28 100644
--- a/app/controllers/dashboard/application_controller.rb
+++ b/app/controllers/dashboard/application_controller.rb
@@ -1,3 +1,9 @@
class Dashboard::ApplicationController < ApplicationController
layout 'dashboard'
+
+ private
+
+ def projects
+ @projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
+ end
end