Welcome to mirror list, hosted at ThFree Co, Russian Federation.

find_issues.rb « api « scripts - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f74f815fba9a752383048b9ed751763d3a5a8001 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require_relative 'base'

class FindIssues < Base
  def execute(search_data)
    client.issues(project, search_data)
  end
end