BigW Consortium Gitlab

issues_action.rb 357 Bytes
Newer Older
1 2 3 4
module IssuesAction
  extend ActiveSupport::Concern

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

Tap committed
9
    @label = @issuable_finder.labels.first
Tap committed
10

11 12 13 14 15 16
    respond_to do |format|
      format.html
      format.atom { render layout: false }
    end
  end
end