module Gitlab::Client::EpicIssues

Defines methods related to issues. @see docs.gitlab.com/ee/api/epic_issues.html

Public Instance Methods

epic_issues(group, epic, options = {}) click to toggle source

List issues for an epic. Gets all issues that are assigned to an epic and the authenticated user has access to.. @example

Gitlab.epic_issues(5, 7)
Gitlab.epic_issues(5, 7, { per_page: 40 })

@param [Integer, String] group The ID or name of a group. @param [Integer] epic The iid of an epic. @param [Hash] options A customizable set of options. @option options [Integer] :page The page number. @option options [Integer] :per_page The number of results per page. @return [Array<Gitlab::ObjectifiedHash>]

# File lib/gitlab/client/epic_issues.rb, line 19
def epic_issues(group, epic, options = {})
  get("/groups/#{url_encode group}/epics/#{epic}/issues", query: options)
end