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

tag_release.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66d1eeeab4aa37073693a4f7234b3c8354e97886 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    # deprecated old Release representation
    class TagRelease < Grape::Entity
      expose :tag, as: :tag_name, documentation: { type: 'string', example: '1.0.0' }
      expose :description, documentation: { type: 'string', example: 'Amazing release. Wow' }
    end
  end
end