13 lines
272 B
Ruby
13 lines
272 B
Ruby
|
# 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
|