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: 2a16cfae78b7f1f30e3ec885f646515646a0d287 (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
# frozen_string_literal: true

module Spam
  module SpamConstants
    CONDITIONAL_ALLOW = "conditional_allow"
    DISALLOW = "disallow"
    ALLOW = "allow"
    BLOCK_USER = "block"

    SUPPORTED_VERDICTS = {
      BLOCK_USER => {
        priority: 1
      },
      DISALLOW => {
        priority: 2
      },
      CONDITIONAL_ALLOW => {
        priority: 3
      },
      ALLOW => {
        priority: 4
      }
    }.freeze
  end
end