debian-mirror-gitlab/lib/gitlab/graphql/authorize.rb
2019-07-07 11:18:12 +05:30

16 lines
422 B
Ruby

# 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, after_built_ins: true)
end
end
end
end