summaryrefslogtreecommitdiff
path: root/app/services/groups
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-05-14 12:57:08 +0200
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-07-28 09:09:55 +0200
commitd7062dd042f7dd773900ecf6ea79e1ca26592eb5 (patch)
tree07656fcfb6911d9136c464f262806357ab518652 /app/services/groups
parentb92d5135d8522e1370636799d74b51f9a37d0b2f (diff)
downloadgitlab-ce-d7062dd042f7dd773900ecf6ea79e1ca26592eb5.tar.gz
Remove Mattermost team with GitLab group
When destroying a group, now an API call is made to the Mattermost server to request the deletion of the project. Actual team deletion on the Mattermost side happens async, so the runtime shouldn't increase by more than a second.
Diffstat (limited to 'app/services/groups')
-rw-r--r--app/services/groups/destroy_service.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/groups/destroy_service.rb b/app/services/groups/destroy_service.rb
index 80c51cb5a72..f565612a89d 100644
--- a/app/services/groups/destroy_service.rb
+++ b/app/services/groups/destroy_service.rb
@@ -21,6 +21,8 @@ module Groups
DestroyService.new(group, current_user).execute
end
+ group.chat_team&.remove_mattermost_team(current_user)
+
group.really_destroy!
end
end