56de781a2c
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
20 lines
446 B
Ruby
20 lines
446 B
Ruby
module IssuesAction
|
|
extend ActiveSupport::Concern
|
|
include IssuableCollections
|
|
|
|
def issues
|
|
@label = issues_finder.labels.first
|
|
|
|
@issues = issues_collection
|
|
.non_archived
|
|
.page(params[:page])
|
|
|
|
@collection_type = "Issue"
|
|
@issuable_meta_data = issuable_meta_data(@issues, @collection_type)
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
format.atom { render layout: false }
|
|
end
|
|
end
|
|
end
|