debian-mirror-gitlab/lib/gitlab/graphql/authorize/instrumentation.rb
2020-06-23 00:09:42 +05:30

22 lines
539 B
Ruby

# frozen_string_literal: true
module Gitlab
module Graphql
module Authorize
class Instrumentation
# Replace the resolver for the field with one that will only return the
# resolved object if the permissions check is successful.
def instrument(_type, field)
service = AuthorizeFieldService.new(field)
if service.authorizations?
field.redefine { resolve(service.authorized_resolve) }
else
field
end
end
end
end
end
end