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
path: root/app
diff options
context:
space:
mode:
authorJames Fargher <proglottis@gmail.com>2019-02-07 06:00:32 +0300
committerJames Fargher <proglottis@gmail.com>2019-02-08 06:38:13 +0300
commit470a86670fed96899a342f0b53a047799921055d (patch)
tree93cb01790ee039bdce376c438881276e2db5a5a7 /app
parent684a1a17674d92682c9d91c4e944e1a31b0bcda4 (diff)
Add missing argument to DeploymentService#predefined_variables
Diffstat (limited to 'app')
-rw-r--r--app/models/project_services/deployment_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project_services/deployment_service.rb b/app/models/project_services/deployment_service.rb
index 6dae4f3a4a6..80aa2101509 100644
--- a/app/models/project_services/deployment_service.rb
+++ b/app/models/project_services/deployment_service.rb
@@ -11,7 +11,7 @@ class DeploymentService < Service
%w()
end
- def predefined_variables
+ def predefined_variables(project:)
[]
end