8 lines
164 B
Ruby
8 lines
164 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CurrentBoardEntity < Grape::Entity
|
|
expose :id
|
|
expose :name
|
|
end
|
|
|
|
CurrentBoardEntity.prepend_if_ee('EE::CurrentBoardEntity')
|