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 'qa/qa/flow/settings.rb')
-rw-r--r--qa/qa/flow/settings.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/qa/qa/flow/settings.rb b/qa/qa/flow/settings.rb
index 775b7686c10..8e6ce667475 100644
--- a/qa/qa/flow/settings.rb
+++ b/qa/qa/flow/settings.rb
@@ -3,7 +3,7 @@
module QA
module Flow
module Settings
- module_function
+ extend self
def disable_snowplow
Flow::Login.while_signed_in_as_admin do
@@ -23,3 +23,5 @@ module QA
end
end
end
+
+QA::Flow::Settings.prepend_mod_with('Flow::Settings', namespace: QA)