class Gitlab::Release::Changelog::MergeRequest

This class represents a single Merge Request.

Public Instance Methods

to_s_for_changelog(with_reference) click to toggle source
# File lib/gitlab/release/changelog/entry.rb, line 36
def to_s_for_changelog(with_reference)
  with_reference ? "- #{title} !#{id}" : super
end