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

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

module API
  module Entities
    module InternalPostReceive
      class Response < Grape::Entity
        expose :messages, using: Entities::InternalPostReceive::Message
        expose :reference_counter_decreased
      end
    end
  end
end