gitlab-org--gitlab-foss/lib/gitlab/graphql/authorize.rb

16 lines
399 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-08-16 09:04:41 -04:00
module Gitlab
module Graphql
# Allow fields to declare permissions their objects must have. The field
# will be set to nil unless all required permissions are present.
module Authorize
extend ActiveSupport::Concern
2017-08-16 09:04:41 -04:00
def self.use(schema_definition)
schema_definition.instrument(:field, Instrumentation.new)
2017-08-16 09:04:41 -04:00
end
end
end
end