Welcome to mirror list, hosted at ThFree Co, Russian Federation.

board_simple_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3c16a0b5c7abc4c68196633a0a616f7b128c45e (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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

BoardSimpleEntity.prepend_if_ee('EE::BoardSimpleEntity')