summaryrefslogtreecommitdiff
path: root/lib/api/entities/internal/pages/lookup_path.rb
blob: 3d16864e58720e401f7f7f10d7cd64484bb98975 (plain)
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