Files
gitlab-foss/lib/api/entities/internal/pages/lookup_path.rb
2025-06-24 09:11:56 +00:00

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