gitlab-org--gitlab-foss/lib/gitlab/github_import/milestone_formatter.rb

41 lines
779 B
Ruby
Raw Normal View History

2016-04-18 16:44:27 +00:00
module Gitlab
module GithubImport
class MilestoneFormatter < BaseFormatter
def attributes
{
iid: number,
2016-04-18 16:44:27 +00:00
project: project,
title: raw_data.title,
description: raw_data.description,
due_date: raw_data.due_on,
2016-04-18 16:44:27 +00:00
state: state,
created_at: raw_data.created_at,
updated_at: raw_data.updated_at
2016-04-18 16:44:27 +00:00
}
end
2016-10-19 18:42:31 +00:00
def project_association
:milestones
end
def find_condition
{ iid: number }
2016-10-17 15:58:57 +00:00
end
def number
if project.gitea_import?
raw_data.id
else
raw_data.number
end
end
2016-04-18 16:44:27 +00:00
private
def state
raw_data.state == 'closed' ? 'closed' : 'active'
end
end
end
end