summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/issue_formatter.rb
blob: 6f5ac4dac0d3885f152644696dc30f85dcab0422 (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
29
30
31
32
module Gitlab
  module GithubImport
    class IssueFormatter < IssuableFormatter
      def attributes
        {
          iid: number,
          project: project,
          milestone: milestone,
          title: raw_data.title,
          description: description,
          state: state,
          author_id: author_id,
          assignee_id: assignee_id,
          created_at: raw_data.created_at,
          updated_at: raw_data.updated_at
        }
      end

      def has_comments?
        raw_data.comments > 0
      end

      def project_association
        :issues
      end

      def pull_request?
        raw_data.pull_request.present?
      end
    end
  end
end