class Gitlab::Release::Changelog::Issue

This class represents a single Issue.

Public Instance Methods

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