diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-13 14:24:54 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-06-13 14:24:54 +0300 |
commit | 1355ede49d02e2a7b1715a3ed6bd7389bfedf6bc (patch) | |
tree | d1530d3685f4d934f5224fc6cde9305b736c0c71 /app/mailers/emails | |
parent | a5cbb4cb82a6911b5c1de117ae6ed4cbf667a679 (diff) | |
download | gitlab-ce-1355ede49d02e2a7b1715a3ed6bd7389bfedf6bc.tar.gz |
Wipe wall notes feature
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/mailers/emails')
-rw-r--r-- | app/mailers/emails/notes.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/app/mailers/emails/notes.rb b/app/mailers/emails/notes.rb index 7848d34ab2b..acc6d03b5e4 100644 --- a/app/mailers/emails/notes.rb +++ b/app/mailers/emails/notes.rb @@ -32,14 +32,5 @@ module Emails cc: recipient(recipient_id), subject: subject("#{@merge_request.title} (##{@merge_request.iid})")) end - - def note_wall_email(recipient_id, note_id) - @note = Note.find(note_id) - @project = @note.project - @target_url = project_wall_url(@note.project, anchor: "note_#{@note.id}") - mail(from: sender(@note.author_id), - cc: recipient(recipient_id), - subject: subject("Note on wall")) - end end end |