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

mounts.rb « entry « file_config « config « static_site_editor « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10bd377e419d14a259d46bbd41894e7d05d282fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Gitlab
  module StaticSiteEditor
    module Config
      class FileConfig
        module Entry
          ##
          # Entry that represents the mappings of mounted source directories to target paths
          #
          class Mounts < ::Gitlab::Config::Entry::Node
            include ::Gitlab::Config::Entry::Configurable
            include ::Gitlab::Config::Entry::Validatable

            entry :mount, Entry::Mount, description: 'Configuration of a Static Site Editor mount.'

            validations do
              validates :config, type: Array, presence: true
            end

            def skip_config_hash_validation?
              true
            end

            def self.default
              [Entry::Mount.default]
            end
          end
        end
      end
    end
  end
end