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

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

class IssuableEntity < Grape::Entity
  include RequestAwareEntity

  expose :id
  expose :iid
  expose :description
  expose :title
end