gitlab-org--gitlab-foss/app/controllers/dashboard/application_controller.rb

10 lines
204 B
Ruby
Raw Normal View History

2015-04-30 17:06:18 +00:00
class Dashboard::ApplicationController < ApplicationController
layout 'dashboard'
private
def projects
@projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
end
2015-04-30 17:06:18 +00:00
end