Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issuable_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65b204d4dd27bee4450f53147265a1dd9bb70fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class IssuableEntity < Grape::Entity
  expose :id
  expose :iid
  expose :author_id
  expose :description
  expose :lock_version
  expose :milestone_id
  expose :position
  expose :state
  expose :title
  expose :updated_by_id
  expose :created_at
  expose :updated_at
  expose :deleted_at
  expose :time_estimate
  expose :total_time_spent
  expose :human_time_estimate
  expose :human_total_time_spent
end