summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-03-02 14:59:43 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2019-03-02 14:59:43 +0100
commitdc7d0249d5c172c3c3befda55ccca9b6f2d0203f (patch)
tree089125fc64ff992c668bc68a7e3c6d285f1a0715
parent190a6a1e6728ff9425154fe9ccacaa75039854c7 (diff)
downloadgitlab-ce-dc7d0249d5c172c3c3befda55ccca9b6f2d0203f.tar.gz
Require scoped variables for a CI/CD processable entity
-rw-r--r--app/models/concerns/ci/processable.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/concerns/ci/processable.rb b/app/models/concerns/ci/processable.rb
index 1c78b1413a8..268fa8ec692 100644
--- a/app/models/concerns/ci/processable.rb
+++ b/app/models/concerns/ci/processable.rb
@@ -23,5 +23,9 @@ module Ci
def expanded_environment_name
raise NotImplementedError
end
+
+ def scoped_variables_hash
+ raise NotImplementedError
+ end
end
end