Skip to content
Snippets Groups Projects
Commit 23dfc5d6 authored by George Koltsov's avatar George Koltsov
Browse files

Add code review suggestions

parent ba429a6e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -262,17 +262,17 @@ module Gitlab
def pull_request_comment_attributes(comment)
{
project: project,
note: comment_note(comment),
author_id: gitlab_user_id(project, comment.author),
note: comment_note(comment),
created_at: comment.created_at,
updated_at: comment.updated_at
}
end
 
def comment_note(comment)
note = ''
note += @formatter.author_line(comment.author) unless find_user_id(comment.author)
note + comment.note
author = @formatter.author_line(comment.author) unless find_user_id(comment.author)
author.to_s + comment.note.to_s
end
 
def log_error(details)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment