15 lines
540 B
Plaintext
15 lines
540 B
Plaintext
|
%p== Hello, #{@user.name}.
|
||
|
|
||
|
- if @comment.commentable.class == Issue
|
||
|
- link = link_to @comment.commentable.title, [@comment.commentable.project, @comment.commentable]
|
||
|
- object = 'issue'
|
||
|
- elsif @comment.commentable.class == Grit::Commit
|
||
|
- link = link_to @comment.commentable.message, commit_path(@comment.project, @comment.commentable_id)
|
||
|
- object = 'commit'
|
||
|
%p User #{ link_to @comment.user.uname, user_path(@comment.user)} added new comment to #{object} #{link}.
|
||
|
|
||
|
%p "#{ @comment.body }"
|
||
|
|
||
|
|
||
|
%p== Support Team «ROSA Build System»
|