summaryrefslogtreecommitdiff
path: root/app/presenters/ci/variable_presenter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/presenters/ci/variable_presenter.rb')
-rw-r--r--app/presenters/ci/variable_presenter.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/app/presenters/ci/variable_presenter.rb b/app/presenters/ci/variable_presenter.rb
index 5d7998393a6..96159f88c59 100644
--- a/app/presenters/ci/variable_presenter.rb
+++ b/app/presenters/ci/variable_presenter.rb
@@ -7,19 +7,15 @@ module Ci
end
def form_path
- if variable.persisted?
- project_variable_path(project, variable)
- else
- project_variables_path(project)
- end
+ project_settings_ci_cd_path(project)
end
def edit_path
- project_variable_path(project, variable)
+ project_variables_path(project)
end
def delete_path
- project_variable_path(project, variable)
+ project_variables_path(project)
end
end
end