Class: Redditor::Admin::SliderBlocksController
- Inherits:
-
BaseController
- Object
- BaseController
- Redditor::Admin::SliderBlocksController
- Defined in:
- app/controllers/redditor/admin/slider_blocks_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
16 17 18 19 20 21 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 16 def create temp_last_postion = @page.try(:content_blocks).try(:last).try(:position).to_i + 1 @content_block = @page..build(content_block_params) @content_block.update_attributes(position: temp_last_postion) render "redditor/admin/pages/new" end |
#destroy ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 23 def destroy @content_block = @page..find(params[:id]) if @content_block.destroy render :js => "$('#slider_block_#{@content_block.id}').closest('dd').remove();" else render :js => "alert('Контент-блок не удален');" end end |
#new ⇒ Object
5 6 7 8 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 5 def new @content_block = @page..build(content_block_params) render "redditor/admin/pages/new" end |
#update ⇒ Object
10 11 12 13 14 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 10 def update @content_block = @page..find(params[:id]) @content_block.update_attributes(content_block_params) render "redditor/admin/pages/wrapper" end |