mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00
22 lines
428 B
Ruby
22 lines
428 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
module Internal
|
|
module Pages
|
|
class LookupPath < Grape::Entity
|
|
expose :access_control,
|
|
:https_only,
|
|
:prefix,
|
|
:project_id,
|
|
:source,
|
|
:unique_host,
|
|
:root_directory,
|
|
:primary_domain,
|
|
:top_level_namespace_path
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|