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:54:16 +0300
committerMatija Čupić <matteeyah@gmail.com>2018-02-05 20:58:19 +0300
commita8887a0d9c4a41a0707b92189572aeff10566af6 (patch)
tree6c7fb9025c2f1ffc7ae82ecaeffd0facd21c042d /app/presenters
parent0bfcdd66bf932c080398ff264323b5c0df17d05c (diff)
Use `resource` in Group Variables routing scheme
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/ci/group_variable_presenter.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/presenters/ci/group_variable_presenter.rb b/app/presenters/ci/group_variable_presenter.rb
index fb6dfcc1e4d..98d68bc7a83 100644
--- a/app/presenters/ci/group_variable_presenter.rb
+++ b/app/presenters/ci/group_variable_presenter.rb
@@ -11,11 +11,11 @@ module Ci
end
def edit_path
- group_variables_save_multiple_path(group)
+ group_variables_path(group)
end
def delete_path
- group_variables_save_multiple_path(group)
+ group_variables_path(group)
end
end
end