2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class CommitNote < Grape::Entity
|
|
|
|
expose :note
|
|
|
|
expose(:path) { |note| note.diff_file.try(:file_path) if note.diff_note? }
|
2021-11-11 11:23:49 +05:30
|
|
|
expose(:line) { |note| note.diff_line.try(:line) if note.diff_note? }
|
2020-03-13 15:44:24 +05:30
|
|
|
expose(:line_type) { |note| note.diff_line.try(:type) if note.diff_note? }
|
|
|
|
expose :author, using: Entities::UserBasic
|
|
|
|
expose :created_at
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|