gitlab-org--gitlab-foss/lib/api/entities/changelog.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
145 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module API
module Entities
class Changelog < Grape::Entity
expose :to_s, as: :notes
end
end
end