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: 5c9e0610781e716c207d18bfa6a5d9541ec0e1eb (plain)
1
2
3
4
5
6
7
8
9
10
class Dashboard::ApplicationController < ApplicationController
  layout 'dashboard'

  private

  def projects
    @projects ||= ProjectsFinder.execute(current_user, scope: :authorized).
                                  sorted_by_activity.non_archived
  end
end