summaryrefslogtreecommitdiff
path: root/app/models/concerns/has_variable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/concerns/has_variable.rb')
-rw-r--r--app/models/concerns/has_variable.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/concerns/has_variable.rb b/app/models/concerns/has_variable.rb
index dfbe413a878..2ec42a1029b 100644
--- a/app/models/concerns/has_variable.rb
+++ b/app/models/concerns/has_variable.rb
@@ -21,9 +21,9 @@ module HasVariable
def key=(new_key)
super(new_key.to_s.strip)
end
+ end
- def to_runner_variable
- { key: key, value: value, public: false }
- end
+ def to_runner_variable
+ { key: key, value: value, public: false }
end
end