20 lines
444 B
Ruby
20 lines
444 B
Ruby
module IssuesAction
|
|
extend ActiveSupport::Concern
|
|
include IssuableCollections
|
|
|
|
def issues
|
|
@finder_type = IssuesFinder
|
|
@label = finder.labels.first
|
|
|
|
@issues = issuables_collection
|
|
.non_archived
|
|
.page(params[:page])
|
|
|
|
@issuable_meta_data = issuable_meta_data(@issues, collection_type)
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
format.atom { render layout: 'xml.atom' }
|
|
end
|
|
end
|
|
end
|