debian-mirror-gitlab/lib/gitlab/slash_commands/issue_command.rb

16 lines
303 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
module Gitlab
2017-09-10 17:25:29 +05:30
module SlashCommands
2017-08-17 22:00:37 +05:30
class IssueCommand < BaseCommand
def self.available?(project)
2017-09-10 17:25:29 +05:30
project.issues_enabled?
2017-08-17 22:00:37 +05:30
end
def collection
IssuesFinder.new(current_user, project_id: project.id).execute
end
end
end
end