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

28 lines
429 B
Ruby
Raw Normal View History

module Bitbucket
module Representation
class Comment < Representation::Base
def author
user_representation(user)
end
def note
raw.dig('content', 'raw')
end
def created_at
raw['created_on']
end
def updated_at
raw['updated_on'] || raw['created_on']
end
private
def user
raw.fetch('user', {})
end
end
end
end