From 5479797f0a3a648824fd98d17360bbf886957bf1 Mon Sep 17 00:00:00 2001
From: teuneboon <teuneboon@gmail.com>
Date: Mon, 12 Oct 2015 14:37:56 +0200
Subject: [PATCH] Make group deleted text consistent with group created and
 updated texts

---
 app/controllers/groups_controller.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb
index 735de309fd6..40fb15a5b36 100644
--- a/app/controllers/groups_controller.rb
+++ b/app/controllers/groups_controller.rb
@@ -88,7 +88,7 @@ class GroupsController < Groups::ApplicationController
   def destroy
     DestroyGroupService.new(@group, current_user).execute
 
-    redirect_to root_path, alert: "Group '#{@group.name}' was deleted."
+    redirect_to root_path, alert: "Group '#{@group.name}' was successfully deleted."
   end
 
   protected
-- 
GitLab