Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lookup_path.rb « pages « internal « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bf94f74fb470082b5e408c6a5278f6923f4c98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module Internal
      module Pages
        class LookupPath < Grape::Entity
          expose :project_id, :access_control,
            :source, :https_only, :prefix
        end
      end
    end
  end
end