debian-mirror-gitlab/lib/gitlab/slash_commands/issue_command.rb
2017-09-10 17:25:29 +05:30

14 lines
272 B
Ruby

module Gitlab
module SlashCommands
class IssueCommand < BaseCommand
def self.available?(project)
project.issues_enabled?
end
def collection
IssuesFinder.new(current_user, project_id: project.id).execute
end
end
end
end