summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/authorize.rb
blob: f62813db82c28f9f44dce8cdbba94cf9d893f4af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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

      def self.use(schema_definition)
        schema_definition.instrument(:field, Instrumentation.new)
      end
    end
  end
end