summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/milestone_formatter.rb
blob: b2fa524cf5b41816b9a96583cb10f81298b842c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module Gitlab
  module GithubImport
    class MilestoneFormatter < BaseFormatter
      def attributes
        {
          iid: raw_data.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 klass
        Milestone
      end

      private

      def state
        raw_data.state == 'closed' ? 'closed' : 'active'
      end
    end
  end
end