summaryrefslogtreecommitdiff
path: root/app/serializers/issue_entity.rb
blob: bc4f68710b20deca81c86b3a3fcfe0f90abf4b85 (plain)
1
2
3
4
5
6
7
8
9
10
class IssueEntity < IssuableEntity
  expose :branch_name
  expose :confidential
  expose :assignees, using: API::Entities::UserBasic
  expose :due_date
  expose :moved_to_id
  expose :project_id
  expose :milestone, using: API::Entities::Milestone
  expose :labels, using: LabelEntity
end