1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# 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 end end end end end