Method: Gitlab::Client::Notes#epic_notes

Defined in:
lib/gitlab/client/notes.rb

#epic_notes(group, epic, options = {}) ⇒ Array<Gitlab::ObjectifiedHash>

Gets a list of notes for an epic.

Examples:

Gitlab.epic_notes(5, 10)

Parameters:

  • project (Integer)

    The ID of a group.

  • epic (Integer)

    The ID of an epic.

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :page (Integer)

    The page number.

  • :per_page (Integer)

    The number of results per page.

Returns:

[View source]

73
74
75
# File 'lib/gitlab/client/notes.rb', line 73

def epic_notes(group, epic, options = {})
  get("/groups/#{url_encode group}/epics/#{epic}/notes", query: options)
end