Sha256: 25b378992c55e18ec047d350e0935faa9df12dee68f60ca4279b42cc38cf2bde

Contents?: true

Size: 989 Bytes

Versions: 2

Compression:

Stored size: 989 Bytes

Contents

# coding: utf-8

class Redditor::Admin::ImageBlocksController < Redditor::Admin::BaseController
  def new
    @content_block = @page.images.build(content_block_params)
    render "redditor/admin/new"
  end

  def update
    @content_block = @page.images.find(params[:id])
    @content_block.update_attributes(content_block_params)
    render "redditor/admin/wrapper"
  end

  def create
    @content_block = @page.images.build(content_block_params)
    @content_block.update_attributes(src: params[:file])
    render "redditor/admin/wrapper"
  end

  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

  def update_post
    @content_block = @page.images.find(params[:id])
    @content_block.update_attributes(src: params[:file])
    render "redditor/admin/wrapper"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redditor-0.1.22 app/controllers/redditor/admin/image_blocks_controller.rb
redditor-0.1.20 app/controllers/redditor/admin/image_blocks_controller.rb