2019-09-30 21:07:59 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CurrentBoardEntity < Grape::Entity
|
|
|
|
expose :id
|
|
|
|
expose :name
|
2021-04-17 20:07:23 +05:30
|
|
|
expose :hide_backlog_list
|
|
|
|
expose :hide_closed_list
|
2019-09-30 21:07:59 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
CurrentBoardEntity.prepend_mod_with('CurrentBoardEntity')
|