notes.rb 1.4 KB
Newer Older
1 2 3 4 5 6
module Emails
  module Notes
    def note_commit_email(recipient_id, note_id)
      @note = Note.find(note_id)
      @commit = @note.noteable
      @project = @note.project
7
      @target_url = project_commit_url(@project, @commit, anchor: "note_#{@note.id}")
8 9 10 11
      mail_answer_thread(@commit,
                         from: sender(@note.author_id),
                         to: recipient(recipient_id),
                         subject: subject("#{@commit.title} (#{@commit.short_id})"))
12 13 14 15 16 17
    end

    def note_issue_email(recipient_id, note_id)
      @note = Note.find(note_id)
      @issue = @note.noteable
      @project = @note.project
18
      @target_url = project_issue_url(@project, @issue, anchor: "note_#{@note.id}")
19 20 21 22
      mail_answer_thread(@issue,
                         from: sender(@note.author_id),
                         to: recipient(recipient_id),
                         subject: subject("#{@issue.title} (##{@issue.iid})"))
23 24 25 26 27 28
    end

    def note_merge_request_email(recipient_id, note_id)
      @note = Note.find(note_id)
      @merge_request = @note.noteable
      @project = @note.project
29
      @target_url = project_merge_request_url(@project, @merge_request, anchor: "note_#{@note.id}")
30 31 32 33
      mail_answer_thread(@merge_request,
                         from: sender(@note.author_id),
                         to: recipient(recipient_id),
                         subject: subject("#{@merge_request.title} (##{@merge_request.iid})"))
34 35 36
    end
  end
end