summaryrefslogtreecommitdiff
path: root/lib/api/entities/changelog.rb
blob: f8ca58264187ad0c1c4b7816ad4299cbab6bddb1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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