2020-02-07 22:08:47 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class Discussion < Grape::Entity
|
|
|
|
expose :id
|
|
|
|
expose :individual_note?, as: :individual_note
|
2020-03-20 20:09:18 -04:00
|
|
|
expose :notes, using: Entities::Note
|
2020-02-07 22:08:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|