gitlab-org--gitlab-foss/lib/bitbucket/representation/pull_request_comment.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
616 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-16 08:13:17 +00:00
module Bitbucket
module Representation
class PullRequestComment < Comment
def iid
raw['id']
end
def file_path
2016-12-12 18:41:55 +00:00
inline.fetch('path')
2016-11-16 08:13:17 +00:00
end
def old_pos
2016-12-12 18:41:55 +00:00
inline.fetch('from')
2016-11-16 08:13:17 +00:00
end
def new_pos
2016-12-12 18:41:55 +00:00
inline.fetch('to')
2016-11-16 08:13:17 +00:00
end
def parent_id
raw.fetch('parent', {}).fetch('id', nil)
2016-11-16 08:13:17 +00:00
end
def inline?
raw.key?('inline')
2016-11-16 08:13:17 +00:00
end
def has_parent?
raw.key?('parent')
2016-11-16 08:13:17 +00:00
end
private
def inline
raw.fetch('inline', {})
end
end
end
end