b65cb237ce
The email is sent to project maintainers containing the last mirror update error. This will allow maintainers to set alarms and react accordingly.
12 lines
366 B
Ruby
12 lines
366 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Emails
|
|
module RemoteMirrors
|
|
def remote_mirror_update_failed_email(remote_mirror_id, recipient_id)
|
|
@remote_mirror = RemoteMirrorFinder.new(id: remote_mirror_id).execute
|
|
@project = @remote_mirror.project
|
|
|
|
mail(to: recipient(recipient_id), subject: subject('Remote mirror update failed'))
|
|
end
|
|
end
|
|
end
|