summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteuneboon <teuneboon@gmail.com>2015-10-12 14:37:56 +0200
committerteuneboon <teuneboon@gmail.com>2015-10-12 14:37:56 +0200
commit5479797f0a3a648824fd98d17360bbf886957bf1 (patch)
tree3014d91493360784b52b358833c9691f94b17424
parentd6a523d78569020a00cf707f34a1824996261037 (diff)
downloadgitlab-ce-5479797f0a3a648824fd98d17360bbf886957bf1.tar.gz
Make group deleted text consistent with group created and updated texts
-rw-r--r--app/controllers/groups_controller.rb2
1 files changed, 1 insertions, 1 deletions
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