2e9c922dd1
Also fix a number of issues where author/reporter names were not available.
15 lines
286 B
Ruby
15 lines
286 B
Ruby
module Gitlab
|
|
class ImportFormatter
|
|
def comment(author, date, body)
|
|
"\n\n*By #{author} on #{date}*\n\n#{body}"
|
|
end
|
|
|
|
def comments_header
|
|
"\n\n\n**Imported comments:**\n"
|
|
end
|
|
|
|
def author_line(author)
|
|
"*Created by: #{author}*\n\n"
|
|
end
|
|
end
|
|
end
|