12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'app/controllers/pulitzer/versions_controller.rb', line 12
def update
status_updater = Pulitzer::UpdateVersionStatus.new(@version, @status)
if status_updater.errors.any?
processing_version = @version
flash_message = status_updater.errors.join("<br>").html_safe
status = :conflict
else
processing_version = status_updater.call
if processing_version
if processing_version.errors.empty?
status = :ok
flash_message = "The new version of #{@post.title} has been activated."
else
status = :conflict
flash_message = processing_version.errors.full_messages.join("<br>").html_safe
end
else
flash[:notice] = "The post was successfully removed."
render json: {class_triggers: {"hooch.ReloadPage" => posts_path(post_type_id: @version.post.post_type.id) }} and return
end
end
render json: {html: render_to_string(partial: '/pulitzer/versions/edit', locals: {version: processing_version}),
flash_message: flash_message}, status: status
end
|