Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/utils.rb')
-rw-r--r--lib/gitlab/utils.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/gitlab/utils.rb b/lib/gitlab/utils.rb
index 77e0e2ca96c..0b1acaf7dd8 100644
--- a/lib/gitlab/utils.rb
+++ b/lib/gitlab/utils.rb
@@ -169,6 +169,16 @@ module Gitlab
end
end
+ def deep_symbolized_access(data)
+ if data.is_a?(Array)
+ data.map(&method(:deep_symbolized_access))
+ elsif data.is_a?(Hash)
+ data.deep_symbolize_keys
+ else
+ data
+ end
+ end
+
def string_to_ip_object(str)
return unless str