Fix typo(missing quote) when deleting groups

This commit is contained in:
teuneboon 2015-10-12 14:37:07 +02:00
parent 03b7fe71a5
commit d6a523d785
1 changed files with 1 additions and 1 deletions

View File

@ -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