10 lines
218 B
Ruby
10 lines
218 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class GroupIssuableAutocompleteEntity < Grape::Entity
|
||
|
expose :iid
|
||
|
expose :title
|
||
|
expose :reference do |issuable, options|
|
||
|
issuable.to_reference(options[:parent_group])
|
||
|
end
|
||
|
end
|