Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2024-08-23 09:09:28 +00:00
parent a33d103465
commit f3af1e76dc
26 changed files with 347 additions and 228 deletions

View File

@ -93,6 +93,10 @@ module GitlabSettings
@options = to_hash.merge(other.deep_stringify_keys)
end
def reverse_merge!(other)
@options = to_hash.reverse_merge(other.deep_stringify_keys)
end
def deep_merge(other)
self.class.build(to_hash.deep_merge(other.deep_stringify_keys))
end