summaryrefslogtreecommitdiff
path: root/lib/api/entities/discussion.rb
blob: 0740de978978f5685a306f673e9623a5744495da (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    class Discussion < Grape::Entity
      expose :id
      expose :individual_note?, as: :individual_note
      expose :notes, using: Entities::NoteWithGitlabEmployeeBadge
    end
  end
end