summaryrefslogtreecommitdiff
path: root/lib/gitlab/graphql/deprecations_base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/graphql/deprecations_base.rb')
-rw-r--r--lib/gitlab/graphql/deprecations_base.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/graphql/deprecations_base.rb b/lib/gitlab/graphql/deprecations_base.rb
index 2ee14620907..8a5f07b6ee9 100644
--- a/lib/gitlab/graphql/deprecations_base.rb
+++ b/lib/gitlab/graphql/deprecations_base.rb
@@ -9,11 +9,11 @@ module Gitlab
def self.included(klass)
klass.extend(ClassMethods)
- klass.const_set('OLD_GRAPHQL_NAME_MAP', klass::DEPRECATIONS.index_by do |d|
+ klass.const_set(:OLD_GRAPHQL_NAME_MAP, klass::DEPRECATIONS.index_by do |d|
klass.map_graphql_name(d.old_name)
end.freeze)
- klass.const_set('OLD_NAME_MAP', klass::DEPRECATIONS.index_by(&:old_name).freeze)
- klass.const_set('NEW_NAME_MAP', klass::DEPRECATIONS.index_by(&:new_name).freeze)
+ klass.const_set(:OLD_NAME_MAP, klass::DEPRECATIONS.index_by(&:old_name).freeze)
+ klass.const_set(:NEW_NAME_MAP, klass::DEPRECATIONS.index_by(&:new_name).freeze)
end
module ClassMethods