mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-18 17:16:08 +10:00
There was some funny syntax in merge request email templates. There was a ! before the merge request number when there probably should be a #. This may be some carry over from markdown but should not be in email templates. There were also some capitalization discrepancies among the subject lines. For those OCD people out there I standardized the capitalization. :)
31 lines
1013 B
Ruby
31 lines
1013 B
Ruby
module Emails
|
|
module Notes
|
|
def note_commit_email(recipient_id, note_id)
|
|
@note = Note.find(note_id)
|
|
@commit = @note.noteable
|
|
@project = @note.project
|
|
mail(to: recipient(recipient_id), subject: subject("Note for commit #{@commit.short_id}", @commit.title))
|
|
end
|
|
|
|
def note_issue_email(recipient_id, note_id)
|
|
@note = Note.find(note_id)
|
|
@issue = @note.noteable
|
|
@project = @note.project
|
|
mail(to: recipient(recipient_id), subject: subject("Note for issue ##{@issue.iid}"))
|
|
end
|
|
|
|
def note_merge_request_email(recipient_id, note_id)
|
|
@note = Note.find(note_id)
|
|
@merge_request = @note.noteable
|
|
@project = @note.project
|
|
mail(to: recipient(recipient_id), subject: subject("Note for merge request ##{@merge_request.iid}"))
|
|
end
|
|
|
|
def note_wall_email(recipient_id, note_id)
|
|
@note = Note.find(note_id)
|
|
@project = @note.project
|
|
mail(to: recipient(recipient_id), subject: subject("Note on wall"))
|
|
end
|
|
end
|
|
end
|