debian-mirror-gitlab/lib/gitlab/graphql/present.rb
2019-02-15 15:39:39 +05:30

23 lines
433 B
Ruby

# frozen_string_literal: true
module Gitlab
module Graphql
module Present
extend ActiveSupport::Concern
prepended do
def self.present_using(kls)
@presenter_class = kls
end
def self.presenter_class
@presenter_class
end
end
def self.use(schema_definition)
schema_definition.instrument(:field, Instrumentation.new)
end
end
end
end