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

source.rb « abuse « enums « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80703126aae0f896590f37cb65399d7c0db35a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Enums
  module Abuse
    module Source
      def self.sources
        {
          spamcheck: 0,
          virus_total: 1,
          arkose_custom_score: 2,
          arkose_global_score: 3,
          telesign: 4,
          pvs: 5
        }
      end
    end
  end
end