summaryrefslogtreecommitdiff
path: root/app/serializers/board_simple_entity.rb
blob: ab6254909665c87e8a6d1870fc838371314629a4 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class BoardSimpleEntity < Grape::Entity
  expose :id
  expose :name
end

BoardSimpleEntity.prepend_mod_with('BoardSimpleEntity')