13 lines
412 B
Ruby
13 lines
412 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Emails
|
|
module RemoteMirrors
|
|
def remote_mirror_update_failed_email(remote_mirror_id, recipient_id)
|
|
@remote_mirror = RemoteMirror.find_by_id(remote_mirror_id)
|
|
@project = @remote_mirror.project
|
|
user = User.find(recipient_id)
|
|
|
|
mail(to: user.notification_email_for(@project.group), subject: subject('Remote mirror update failed'))
|
|
end
|
|
end
|
|
end
|