10 lines
219 B
Ruby
10 lines
219 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CurrentBoardEntity < Grape::Entity
|
|
expose :id
|
|
expose :name
|
|
expose :hide_backlog_list
|
|
expose :hide_closed_list
|
|
end
|
|
|
|
CurrentBoardEntity.prepend_if_ee('EE::CurrentBoardEntity')
|