diff options
author | teuneboon <teuneboon@gmail.com> | 2015-10-12 14:37:07 +0200 |
---|---|---|
committer | teuneboon <teuneboon@gmail.com> | 2015-10-12 14:37:07 +0200 |
commit | d6a523d78569020a00cf707f34a1824996261037 (patch) | |
tree | 66c96eb5385a0cfe15f1f5d6030085cfd1935f2f /app/controllers/groups_controller.rb | |
parent | 03b7fe71a5c5372fc8239a26e757685ab12eed87 (diff) | |
download | gitlab-ce-d6a523d78569020a00cf707f34a1824996261037.tar.gz |
Fix typo(missing quote) when deleting groups
Diffstat (limited to 'app/controllers/groups_controller.rb')
-rw-r--r-- | app/controllers/groups_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index 524218290c6..735de309fd6 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 deleted." end protected |