Sha256: 721e98700fdddae26bc4f2017615e3847db714366326c48fe7e005629ca8374b

Contents?: true

Size: 840 Bytes

Versions: 11

Compression:

Stored size: 840 Bytes

Contents

#coding: utf-8

class Redditor::Admin::VideoBlocksController < Redditor::Admin::BaseController

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

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

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

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

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
redditor-0.1.10 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.9 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.8 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.7 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.6 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.5 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.4 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.3 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.2 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.1 app/controllers/redditor/admin/video_blocks_controller.rb
redditor-0.1.0 app/controllers/redditor/admin/video_blocks_controller.rb