update controller action to render error in form

This commit is contained in:
James Lopez 2016-12-21 11:50:31 +01:00
parent b82fdf6257
commit fd5062a848
1 changed files with 1 additions and 4 deletions

View File

@ -82,10 +82,7 @@ class GroupsController < Groups::ApplicationController
if Groups::UpdateService.new(@group, current_user, group_params).execute
redirect_to edit_group_path(@group), notice: "Group '#{@group.name}' was successfully updated."
else
error = group.errors.full_messages.first
alert_message = "Group '#{@group.name}' cannot be updated: " + error
redirect_to edit_group_path(@group.reload), alert: alert_message
render action: "edit"
end
end