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

release_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c3d06b82d3ca0489b1926b483d491e74a81b4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

# TODO: consider removing this entity after https://gitlab.com/gitlab-org/gitlab/-/issues/360631
class ReleaseEntity < Grape::Entity
  expose :id
  expose :tag # see https://gitlab.com/gitlab-org/gitlab/-/issues/36338
  expose :name
  expose :description
  expose :project_id
  expose :author_id

  expose :created_at
  expose :updated_at
  expose :released_at
end