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:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-10-22 22:21:34 +0400
committerrandx <dmitriy.zaporozhets@gmail.com>2012-10-22 22:21:34 +0400
commit83dc5f936290cd928362c56959a40b906a2acd15 (patch)
tree11c64167f0d065eb5be21fc5c94ab79159959faa /app/controllers/admin/groups_controller.rb
parent4bc64b5530a45b26a13bf6e71d3b9d41aa1e8f98 (diff)
Fix issue with removing group
Diffstat (limited to 'app/controllers/admin/groups_controller.rb')
-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