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

issues_action.rb « concerns « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4feabc32b1cd89520c11ba5df5a772fe24883c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module IssuesAction
  extend ActiveSupport::Concern

  def issues
    @issues = get_issues_collection.non_archived
    @issues = @issues.page(params[:page])
    @issues = @issues.preload(:author, :project)

    @label = @issuable_finder.labels.first

    respond_to do |format|
      format.html
      format.atom { render layout: false }
    end
  end
end