mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
19 lines
326 B
Ruby
19 lines
326 B
Ruby
# 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
|