2013-03-19 14:00:41 -04:00
|
|
|
module Emails
|
|
|
|
module Notes
|
|
|
|
def note_commit_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
|
|
|
@commit = @note.noteable
|
|
|
|
@project = @note.project
|
2014-02-18 05:12:01 -05:00
|
|
|
@target_url = project_commit_url(@project, @commit, anchor: "note_#{@note.id}")
|
2014-06-18 07:41:12 -04:00
|
|
|
mail(from: sender(@note.author_id),
|
|
|
|
to: recipient(recipient_id),
|
|
|
|
subject: subject("#{@commit.title} (#{@commit.short_id})"))
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def note_issue_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
|
|
|
@issue = @note.noteable
|
|
|
|
@project = @note.project
|
2014-02-18 05:46:01 -05:00
|
|
|
@target_url = project_issue_url(@project, @issue, anchor: "note_#{@note.id}")
|
2014-06-18 07:41:12 -04:00
|
|
|
set_reference("issue_#{@issue.id}")
|
|
|
|
mail(from: sender(@note.author_id),
|
|
|
|
to: recipient(recipient_id),
|
|
|
|
subject: subject("#{@issue.title} (##{@issue.iid})"))
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def note_merge_request_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
|
|
|
@merge_request = @note.noteable
|
|
|
|
@project = @note.project
|
2014-02-18 05:12:01 -05:00
|
|
|
@target_url = project_merge_request_url(@project, @merge_request, anchor: "note_#{@note.id}")
|
2014-06-18 07:41:12 -04:00
|
|
|
set_reference("merge_request_#{@merge_request.id}")
|
|
|
|
mail(from: sender(@note.author_id),
|
|
|
|
to: recipient(recipient_id),
|
|
|
|
subject: subject("#{@merge_request.title} (##{@merge_request.iid})"))
|
2013-03-19 14:00:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|