gitlab-org--gitlab-foss/lib/gitlab/config/entry/boolean.rb

19 lines
304 B
Ruby

# frozen_string_literal: true
module Gitlab
module Config
module Entry
##
# Entry that represents a boolean value.
#
class Boolean < Node
include Validatable
validations do
validates :config, boolean: true
end
end
end
end
end