gitlab-org--gitlab-foss/lib/gitlab/import_formatter.rb

24 lines
457 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-02-02 20:01:07 -05:00
module Gitlab
class ImportFormatter
2015-02-17 10:59:50 -05:00
def comment(author, date, body)
2015-02-02 20:01:07 -05:00
"\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"
2015-02-02 20:01:07 -05:00
end
def assignee_line(assignee)
assignee ||= "Anonymous"
"*Assigned to: #{assignee}*\n\n"
end
2015-02-02 20:01:07 -05:00
end
2015-02-03 12:42:56 -05:00
end