debian-mirror-gitlab/lib/gitlab/import_formatter.rb
2018-11-08 19:23:39 +05:30

17 lines
315 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)
author ||= "Anonymous"
"*Created by: #{author}*\n\n"
end
end
end