12 lines
228 B
Ruby
12 lines
228 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class Discussion < Grape::Entity
|
||
|
expose :id
|
||
|
expose :individual_note?, as: :individual_note
|
||
|
expose :notes, using: Entities::Note
|
||
|
end
|
||
|
end
|
||
|
end
|