summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/concerns/mutations/resolves_group.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/concerns/mutations/resolves_group.rb')
-rw-r--r--app/graphql/mutations/concerns/mutations/resolves_group.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/mutations/concerns/mutations/resolves_group.rb b/app/graphql/mutations/concerns/mutations/resolves_group.rb
index 4306ce512f1..d5a040c84e9 100644
--- a/app/graphql/mutations/concerns/mutations/resolves_group.rb
+++ b/app/graphql/mutations/concerns/mutations/resolves_group.rb
@@ -5,10 +5,10 @@ module Mutations
extend ActiveSupport::Concern
def resolve_group(full_path:)
- resolver.resolve(full_path: full_path)
+ group_resolver.resolve(full_path: full_path)
end
- def resolver
+ def group_resolver
Resolvers::GroupResolver.new(object: nil, context: context)
end
end