gitlab-org--gitlab-foss/app/controllers/concerns/issues_action.rb

21 lines
444 B
Ruby
Raw Normal View History

module IssuesAction
extend ActiveSupport::Concern
include IssuableCollections
def issues
2017-11-07 08:34:12 -05:00
@finder_type = IssuesFinder
@label = finder.labels.first
2017-11-07 08:34:12 -05:00
@issues = issuables_collection
.non_archived
.page(params[:page])
2017-11-07 08:34:12 -05:00
@issuable_meta_data = issuable_meta_data(@issues, collection_type)
respond_to do |format|
format.html
format.atom { render layout: 'xml.atom' }
end
end
end