summaryrefslogtreecommitdiff
path: root/app/controllers/admin/groups_controller.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-12-30 14:26:19 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-12-30 14:26:19 +0200
commitd075df56d3cfb15a5d11550d86229f5b8001fbe7 (patch)
tree7ba075db3f2d4f624e818331e3a1085361dd0cbd /app/controllers/admin/groups_controller.rb
parentf45345edb33f1129aabb58976ae2e6812387eb7d (diff)
downloadgitlab-ce-d075df56d3cfb15a5d11550d86229f5b8001fbe7.tar.gz
Improve perfomance of removeing group
Diffstat (limited to 'app/controllers/admin/groups_controller.rb')
-rw-r--r--app/controllers/admin/groups_controller.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/admin/groups_controller.rb b/app/controllers/admin/groups_controller.rb
index 54c69138a3a..90dbda3eeea 100644
--- a/app/controllers/admin/groups_controller.rb
+++ b/app/controllers/admin/groups_controller.rb
@@ -73,6 +73,8 @@ class Admin::GroupsController < AdminController
end
def destroy
+ @group.truncate_teams
+
@group.destroy
redirect_to admin_groups_path, notice: 'Group was successfully deleted.'