ab06313c36
Signed-off-by: Rémy Coutable <remy@rymai.me>
40 lines
779 B
Ruby
40 lines
779 B
Ruby
module Gitlab
|
|
module GithubImport
|
|
class MilestoneFormatter < BaseFormatter
|
|
def attributes
|
|
{
|
|
iid: number,
|
|
project: project,
|
|
title: raw_data.title,
|
|
description: raw_data.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
|
|
|
|
private
|
|
|
|
def state
|
|
raw_data.state == 'closed' ? 'closed' : 'active'
|
|
end
|
|
end
|
|
end
|
|
end
|