diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-10-25 16:31:57 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2019-10-25 16:31:57 +0000 |
commit | b4138257f0f541850f0f1dc77d02ab93d2e4d619 (patch) | |
tree | 0cc67e750544871a97f3b1e8756cd311198c5498 /test/integration | |
parent | 0dc7269c8878502744bf825b052ba6e1f37f6e7f (diff) | |
download | redmine-b4138257f0f541850f0f1dc77d02ab93d2e4d619.tar.gz redmine-b4138257f0f541850f0f1dc77d02ab93d2e4d619.zip |
Specific action for updating role permissions.
git-svn-id: http://svn.redmine.org/redmine/trunk@18862 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/routing/roles_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/routing/roles_test.rb b/test/integration/routing/roles_test.rb index 40d995992..1928c7ef5 100644 --- a/test/integration/routing/roles_test.rb +++ b/test/integration/routing/roles_test.rb @@ -30,6 +30,6 @@ class RoutingRolesTest < Redmine::RoutingTest should_route 'DELETE /roles/2' => 'roles#destroy', :id => '2' should_route 'GET /roles/permissions' => 'roles#permissions' - should_route 'POST /roles/permissions' => 'roles#permissions' + should_route 'POST /roles/permissions' => 'roles#update_permissions' end end |