Sha256: 4fef39e4d62c64215612c41273de7efea8e542e6c80ea666c4b75ee5d46f784e

Contents?: true

Size: 1.06 KB

Versions: 19

Compression:

Stored size: 1.06 KB

Contents

class Pulitzer::PostsController < Pulitzer::ApplicationController
  before_filter :get_post, only: [:show, :edit, :update, :processing_preview]

  def index
    @post_type = Pulitzer::PostType.find params[:post_type_id]
    @posts = Pulitzer::Post.where post_type: @post_type
  end

  def new
    @post = Pulitzer::Post.new(post_type_id: params[:post_type_id])
    render partial: 'new', locals: { post: @post }
  end

  def create
    @post = Pulitzer::Post.create(post_params)
    Pulitzer::CreatePostContentElements.new(@post).call if @post
    render partial: 'show_wrapper', locals: { post: @post }
  end

  def show
    render partial: 'show', locals: { post: @post }
  end

  def edit
    if request.xhr?
      render partial: 'form', locals: { post: @post }
    end
  end

  def update
    @post.update_attributes(post_params)
    render partial: 'show', locals: { post: @post }
  end

  def destroy
    @post.destroy
    render head :ok
  end

  protected

  def post_params
    params[:post].permit!
  end

  def get_post
    @post = Pulitzer::Post.find(params[:id])
  end

end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
pulitzer-0.4.8 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.7 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.6 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.5 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.4 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.3 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.2 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.1 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.4.0 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.9 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.8 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.7 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.6 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.5 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.4 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.3 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.2 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.1 app/controllers/pulitzer/posts_controller.rb
pulitzer-0.3.0 app/controllers/pulitzer/posts_controller.rb