Class: Ckeditor::PicturesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/ckeditor/pictures_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



15
16
17
18
# File 'app/controllers/ckeditor/pictures_controller.rb', line 15

def create
  @picture = Ckeditor.picture_model.new
  respond_with_asset(@picture)
end

#destroyObject



20
21
22
23
24
25
26
27
# File 'app/controllers/ckeditor/pictures_controller.rb', line 20

def destroy
  @picture.destroy

  respond_to do |format|
    format.html { redirect_to pictures_path }
    format.json { render json: @picture, status: 204 }
  end
end

#indexObject



6
7
8
9
10
11
12
13
# File 'app/controllers/ckeditor/pictures_controller.rb', line 6

def index
  @pictures = Ckeditor.picture_adapter.find_all(ckeditor_pictures_scope)
  @pictures = Ckeditor::Paginatable.new(@pictures).page(params[:page])

  respond_to do |format|
    format.html { render layout: @pictures.first_page? }
  end
end