Class: Ckeditor::PicturesController

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

Instance Method Summary collapse

Instance Method Details

#createObject



13
14
15
16
# File 'app/controllers/ckeditor/pictures_controller.rb', line 13

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

#destroyObject



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

def destroy
  @picture.destroy

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

#indexObject



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

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