diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-01-29 18:54:16 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-02-05 18:58:19 +0100 |
commit | a8887a0d9c4a41a0707b92189572aeff10566af6 (patch) | |
tree | 6c7fb9025c2f1ffc7ae82ecaeffd0facd21c042d /app/presenters | |
parent | 0bfcdd66bf932c080398ff264323b5c0df17d05c (diff) | |
download | gitlab-ce-a8887a0d9c4a41a0707b92189572aeff10566af6.tar.gz |
Use `resource` in Group Variables routing scheme
Diffstat (limited to 'app/presenters')
-rw-r--r-- | app/presenters/ci/group_variable_presenter.rb | 4 |
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 |