2019-07-12 02:31:17 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CurrentBoardEntity < Grape::Entity
|
|
|
|
expose :id
|
|
|
|
expose :name
|
2021-02-18 19:11:06 -05:00
|
|
|
expose :hide_backlog_list
|
|
|
|
expose :hide_closed_list
|
2019-07-12 02:31:17 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
CurrentBoardEntity.prepend_mod_with('CurrentBoardEntity')
|