summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-10-22 21:21:34 +0300
committerrandx <dmitriy.zaporozhets@gmail.com>2012-10-22 21:21:34 +0300
commit83dc5f936290cd928362c56959a40b906a2acd15 (patch)
tree11c64167f0d065eb5be21fc5c94ab79159959faa
parent4bc64b5530a45b26a13bf6e71d3b9d41aa1e8f98 (diff)
downloadgitlab-ce-83dc5f936290cd928362c56959a40b906a2acd15.tar.gz
Fix issue with removing group
-rw-r--r--app/controllers/admin/groups_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/groups_controller.rb b/app/controllers/admin/groups_controller.rb
index bfde6548900..0bba019918f 100644
--- a/app/controllers/admin/groups_controller.rb
+++ b/app/controllers/admin/groups_controller.rb
@@ -64,7 +64,7 @@ class Admin::GroupsController < AdminController
def destroy
@group.destroy
- redirect_to groups_url, notice: 'Group was successfully deleted.'
+ redirect_to admin_groups_path, notice: 'Group was successfully deleted.'
end
private