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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 18:44:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-19 18:44:42 +0300
commit4555e1b21c365ed8303ffb7a3325d773c9b8bf31 (patch)
tree5423a1c7516cffe36384133ade12572cf709398d /lib/gitlab/class_attributes.rb
parente570267f2f6b326480d284e0164a6464ba4081bc (diff)
Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42
Diffstat (limited to 'lib/gitlab/class_attributes.rb')
-rw-r--r--lib/gitlab/class_attributes.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/gitlab/class_attributes.rb b/lib/gitlab/class_attributes.rb
index 6560c97b2e6..6eea7590cbd 100644
--- a/lib/gitlab/class_attributes.rb
+++ b/lib/gitlab/class_attributes.rb
@@ -14,6 +14,18 @@ module Gitlab
class_attributes[name] || superclass_attributes(name)
end
+ def set_class_attribute(name, value)
+ class_attributes[name] = value
+
+ after_hooks.each(&:call)
+
+ value
+ end
+
+ def after_set_class_attribute(&block)
+ after_hooks << block
+ end
+
private
def class_attributes
@@ -25,6 +37,10 @@ module Gitlab
superclass.get_class_attribute(name)
end
+
+ def after_hooks
+ @after_hooks ||= []
+ end
end
end
end