Sha256: bb97d117ad9d4d73ee517a0f94f0954183fed32cb0e4cab0da0c31e1951739fe

Contents?: true

Size: 986 Bytes

Versions: 1

Compression:

Stored size: 986 Bytes

Contents

class Ckeditor::PicturesController < Ckeditor::ApplicationController
  skip_before_filter :verify_authenticity_token, only: :create

  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

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

  def destroy
    return false unless Ckeditor.can_delete

    @picture.destroy

    respond_to do |format|
      format.html { redirect_to pictures_path }
      format.json { render :nothing => true, :status => 204 }
    end
  end

  protected

    def find_asset
      @picture = Ckeditor.picture_adapter.get!(params[:id])
    end

    def authorize_resource
      model = (@picture || Ckeditor.picture_model)
      @authorization_adapter.try(:authorize, params[:action], model)
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
glebtv-ckeditor-4.5.10.2 app/controllers/ckeditor/pictures_controller.rb