summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2015-10-12 08:09:24 -0700
committerStan Hu <stanhu@gmail.com>2015-10-12 08:09:24 -0700
commite426c149d25aaf77cecabcbf14b1db4f252eca75 (patch)
tree3014d91493360784b52b358833c9691f94b17424
parent03b7fe71a5c5372fc8239a26e757685ab12eed87 (diff)
parent5479797f0a3a648824fd98d17360bbf886957bf1 (diff)
downloadgitlab-ce-e426c149d25aaf77cecabcbf14b1db4f252eca75.tar.gz
Merge pull request #9719 from teuneboon/master
Small typo fix when deleting groups
-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 524218290c6..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