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

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

class GroupBasicEntity < Grape::Entity
  include RequestAwareEntity

  expose :id
  expose :name
  expose :full_path
  expose :full_name
end