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

group_issuable_autocomplete_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f950a7db7855c3c38e53004dbb8643b007798a45 (plain)
1
2
3
4
5
6
7
8
9
# 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