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: 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')