debian-mirror-gitlab/lib/gitlab/web_ide/config/entry/global.rb
2020-06-23 00:09:42 +05:30

30 lines
724 B
Ruby

# frozen_string_literal: true
module Gitlab
module WebIde
class Config
module Entry
##
# This class represents a global entry - root Entry for entire
# GitLab WebIde Configuration file.
#
class Global < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Configurable
include ::Gitlab::Config::Entry::Attributable
ALLOWED_KEYS = %i[terminal].freeze
validations do
validates :config, allowed_keys: ALLOWED_KEYS
end
entry :terminal, Entry::Terminal,
description: 'Configuration of the webide terminal.'
attributes :terminal
end
end
end
end
end