11 lines
172 B
Ruby
11 lines
172 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class GroupBasicEntity < Grape::Entity
|
||
|
include RequestAwareEntity
|
||
|
|
||
|
expose :id
|
||
|
expose :name
|
||
|
expose :full_path
|
||
|
expose :full_name
|
||
|
end
|