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

application_controller.rb « dashboard « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d3d1c23c28c9784676322441472c602cf9d5863 (plain)
1
2
3
4
5
6
7
8
9
class Dashboard::ApplicationController < ApplicationController
  layout 'dashboard'

  private

  def projects
    @projects ||= current_user.authorized_projects.sorted_by_activity.non_archived
  end
end