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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
457 B
Ruby
Raw Permalink Normal View History

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