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

10 lines
204 B
Ruby

class Dashboard::ApplicationController < ApplicationController
layout 'dashboard'
private
def projects
@projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
end
end