Welcome to mirror list, hosted at ThFree Co, Russian Federation.

changelog.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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