diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-12-30 14:26:19 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-12-30 14:26:19 +0200 |
commit | d075df56d3cfb15a5d11550d86229f5b8001fbe7 (patch) | |
tree | 7ba075db3f2d4f624e818331e3a1085361dd0cbd /app/controllers | |
parent | f45345edb33f1129aabb58976ae2e6812387eb7d (diff) | |
download | gitlab-ce-d075df56d3cfb15a5d11550d86229f5b8001fbe7.tar.gz |
Improve perfomance of removeing group
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/admin/groups_controller.rb | 2 |
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.' |