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:
authorMatija Čupić <matteeyah@gmail.com>2018-01-29 20:39:06 +0300
committerMatija Čupić <matteeyah@gmail.com>2018-02-05 20:58:18 +0300
commit0bfcdd66bf932c080398ff264323b5c0df17d05c (patch)
tree1c306a83624c53ec65ec67229de5033096d35593 /app/presenters
parent6b82a9ef51f59d37975bd5de48142d1a0a8504de (diff)
Use `resource` in Project Variables routing scheme
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/ci/variable_presenter.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/presenters/ci/variable_presenter.rb b/app/presenters/ci/variable_presenter.rb
index 2e8f069646a..96159f88c59 100644
--- a/app/presenters/ci/variable_presenter.rb
+++ b/app/presenters/ci/variable_presenter.rb
@@ -11,11 +11,11 @@ module Ci
end
def edit_path
- project_variables_save_multiple_path(project)
+ project_variables_path(project)
end
def delete_path
- project_variables_save_multiple_path(project)
+ project_variables_path(project)
end
end
end