notes.rb 2.1 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
V
Vinnie Okada 已提交
7 8 9
      @target_url = namespace_project_commit_url(@project.namespace, @project,
                                                 @commit, anchor:
                                                 "note_#{@note.id}")
10 11 12 13
      mail_answer_thread(@commit,
                         from: sender(@note.author_id),
                         to: recipient(recipient_id),
                         subject: subject("#{@commit.title} (#{@commit.short_id})"))
D
Douwe Maan 已提交
14

15
      SentNotification.record_note(@note, recipient_id, reply_key)
16 17 18 19 20 21
    end

    def note_issue_email(recipient_id, note_id)
      @note = Note.find(note_id)
      @issue = @note.noteable
      @project = @note.project
V
Vinnie Okada 已提交
22 23 24
      @target_url = namespace_project_issue_url(@project.namespace, @project,
                                                @issue, anchor:
                                                "note_#{@note.id}")
25 26 27 28
      mail_answer_thread(@issue,
                         from: sender(@note.author_id),
                         to: recipient(recipient_id),
                         subject: subject("#{@issue.title} (##{@issue.iid})"))
D
Douwe Maan 已提交
29

30
      SentNotification.record_note(@note, recipient_id, reply_key)
31 32 33 34 35 36
    end

    def note_merge_request_email(recipient_id, note_id)
      @note = Note.find(note_id)
      @merge_request = @note.noteable
      @project = @note.project
V
Vinnie Okada 已提交
37 38 39 40
      @target_url = namespace_project_merge_request_url(@project.namespace,
                                                        @project,
                                                        @merge_request, anchor:
                                                        "note_#{@note.id}")
41 42 43 44
      mail_answer_thread(@merge_request,
                         from: sender(@note.author_id),
                         to: recipient(recipient_id),
                         subject: subject("#{@merge_request.title} (##{@merge_request.iid})"))
D
Douwe Maan 已提交
45

46
      SentNotification.record_note(@note, recipient_id, reply_key)
47 48 49
    end
  end
end