summaryrefslogtreecommitdiff
path: root/app/serializers/evidences/issue_entity.rb
blob: 2f1f5dc3d18aac30967e5ae33bf3096b15e3d6a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Evidences
  class IssueEntity < Grape::Entity
    expose :id
    expose :title
    expose :description
    expose :state
    expose :iid
    expose :confidential
    expose :created_at
    expose :due_date
  end
end