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