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