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

incoming_email_task.rb « rake_task « system_check « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c296c46feab1e36ee8ee7bf06e08ce43c55f5cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module SystemCheck
  module RakeTask
    # Used by gitlab:incoming_email:check rake task
    class IncomingEmailTask
      extend RakeTaskHelpers

      def self.name
        'Incoming Email'
      end

      def self.checks
        [SystemCheck::IncomingEmailCheck]
      end
    end
  end
end