Sha256: 65d144311862c699f7b3699d4732e036d5e2030bdc8db77b0842f843a40d6d20

Contents?: true

Size: 816 Bytes

Versions: 6

Compression:

Stored size: 816 Bytes

Contents

#coding: utf-8

class Redditor::Admin::TextBlocksController < Redditor::Admin::BaseController

  def new
    @content_block = @page.text_blocks.build(content_block_params)
    render "redditor/admin/new"
  end

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

  def create
    @content_block = @page.text_blocks.build(content_block_params)
    @content_block.save
    render "redditor/admin/wrapper"
  end

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

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
redditor-0.1.17 app/controllers/redditor/admin/text_blocks_controller.rb
redditor-0.1.16 app/controllers/redditor/admin/text_blocks_controller.rb
redditor-0.1.15 app/controllers/redditor/admin/text_blocks_controller.rb
redditor-0.1.14 app/controllers/redditor/admin/text_blocks_controller.rb
redditor-0.1.12 app/controllers/redditor/admin/text_blocks_controller.rb
redditor-0.1.11 app/controllers/redditor/admin/text_blocks_controller.rb