debian-mirror-gitlab/lib/api/entities/job_request/git_info.rb
2020-03-13 15:44:24 +05:30

14 lines
284 B
Ruby

# frozen_string_literal: true
module API
module Entities
module JobRequest
class GitInfo < Grape::Entity
expose :repo_url, :ref, :sha, :before_sha
expose :ref_type
expose :refspecs
expose :git_depth, as: :depth
end
end
end
end