Files
gitlab-foss/lib/gitlab/legacy_github_import/milestone_formatter.rb
2024-12-05 03:24:54 +00:00

53 lines
1021 B
Ruby

# frozen_string_literal: true
module Gitlab
module LegacyGithubImport
class MilestoneFormatter < BaseFormatter
include Import::UsernameMentionRewriter
def attributes
{
iid: number,
project: project,
title: raw_data[:title],
description: description,
due_date: raw_data[:due_on],
state: state,
created_at: raw_data[:created_at],
updated_at: raw_data[:updated_at]
}
end
def project_association
:milestones
end
def find_condition
{ iid: number }
end
def number
if project.gitea_import?
raw_data[:id]
else
raw_data[:number]
end
end
def contributing_user_formatters
{}
end
def description
wrap_mentions_in_backticks(raw_data[:description])
end
private
def state
raw_data[:state] == 'closed' ? 'closed' : 'active'
end
end
end
end