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

spam_constants.rb « spam « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 085bac684c47310c0a5a99c3b9ac53f9ece4995b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Spam
  module SpamConstants
    REQUIRE_RECAPTCHA = :recaptcha
    DISALLOW = :disallow
    ALLOW = :allow
  end
end