17 lines
339 B
Ruby
17 lines
339 B
Ruby
module IssuesAction
|
|
extend ActiveSupport::Concern
|
|
include IssuableCollections
|
|
|
|
def issues
|
|
@label = issues_finder.labels.first
|
|
|
|
@issues = issues_collection
|
|
.non_archived
|
|
.page(params[:page])
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
format.atom { render layout: false }
|
|
end
|
|
end
|
|
end
|