debian-mirror-gitlab/app/mailers/emails/notes.rb

50 lines
2.1 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module Emails
module Notes
def note_commit_email(recipient_id, note_id)
@note = Note.find(note_id)
@commit = @note.noteable
@project = @note.project
2015-04-26 12:48:37 +05:30
@target_url = namespace_project_commit_url(@project.namespace, @project,
@commit, anchor:
"note_#{@note.id}")
2014-09-02 18:07:02 +05:30
mail_answer_thread(@commit,
from: sender(@note.author_id),
to: recipient(recipient_id),
subject: subject("#{@commit.title} (#{@commit.short_id})"))
2015-09-25 12:07:36 +05:30
SentNotification.record_note(@note, recipient_id, reply_key)
2014-09-02 18:07:02 +05:30
end
def note_issue_email(recipient_id, note_id)
@note = Note.find(note_id)
@issue = @note.noteable
@project = @note.project
2015-04-26 12:48:37 +05:30
@target_url = namespace_project_issue_url(@project.namespace, @project,
@issue, anchor:
"note_#{@note.id}")
2014-09-02 18:07:02 +05:30
mail_answer_thread(@issue,
from: sender(@note.author_id),
to: recipient(recipient_id),
subject: subject("#{@issue.title} (##{@issue.iid})"))
2015-09-25 12:07:36 +05:30
SentNotification.record_note(@note, recipient_id, reply_key)
2014-09-02 18:07:02 +05:30
end
def note_merge_request_email(recipient_id, note_id)
@note = Note.find(note_id)
@merge_request = @note.noteable
@project = @note.project
2015-04-26 12:48:37 +05:30
@target_url = namespace_project_merge_request_url(@project.namespace,
@project,
@merge_request, anchor:
"note_#{@note.id}")
2014-09-02 18:07:02 +05:30
mail_answer_thread(@merge_request,
from: sender(@note.author_id),
to: recipient(recipient_id),
subject: subject("#{@merge_request.title} (##{@merge_request.iid})"))
2015-09-25 12:07:36 +05:30
SentNotification.record_note(@note, recipient_id, reply_key)
2014-09-02 18:07:02 +05:30
end
end
end