debian-mirror-gitlab/lib/api/entities/internal/serverless/virtual_domain.rb

15 lines
274 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
module API
module Entities
module Internal
2020-04-08 14:13:33 +05:30
module Serverless
2019-12-04 20:38:33 +05:30
class VirtualDomain < Grape::Entity
expose :certificate, :key
expose :lookup_paths, using: LookupPath
end
end
end
end
end