Method: Redditor::Admin::ImageBlocksController#destroy

Defined in:
app/controllers/redditor/admin/image_blocks_controller.rb

#destroyObject



21
22
23
24
25
26
27
28
# File 'app/controllers/redditor/admin/image_blocks_controller.rb', line 21

def destroy
  @content_block = @page.images.find(params[:id])
  if @content_block.destroy
    render js: "$('#image_#{@content_block.id}').closest('dd').remove();"
  else
    render js: "alert('Контент-блок не удален');"
  end
end