blob: 304fd9de08f8e9ace8bbb6ba253eb267bf60e53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class LabelEntity < Grape::Entity
expose :id
expose :title
expose :color
expose :description
expose :group_id
expose :project_id
expose :template
expose :created_at
expose :updated_at
end
|