Sha256: 4d4cb0c28e5469d0fa826f679163bce004f311174509337db11febb8829d1d61

Contents?: true

Size: 1.37 KB

Versions: 13

Compression:

Stored size: 1.37 KB

Contents

class Pulitzer::BackgroundStylesController < Pulitzer::ApplicationController
  before_action :get_background_style, only: [:show, :edit, :update, :destroy]

  def new
    @background_style = Pulitzer::BackgroundStyle.new(background_style_params)
    render partial: 'new', locals: {background_style: @background_style}
  end

  def create
    @background_style = Pulitzer::BackgroundStyle.create(background_style_params)
    if @background_style.errors.empty?
      render partial: 'show_wrapper', locals: {background_style: @background_style}
    else
      render partial: 'new', locals: {background_style: @background_style}, status: 409
    end
  end

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

  def edit
    render partial: 'form', locals: {background_style: @background_style}
  end

  def update
    @background_style.update_attributes(background_style_params)
    if @background_style.errors.empty?
      render partial: 'show', locals: {background_style: @background_style}
    else
      render partial: 'form', locals: {background_style: @background_style}, status: 409
    end
  end

  def destroy
    @background_style.destroy
    head :ok
  end

  protected

  def get_background_style
    @background_style = Pulitzer::BackgroundStyle.find(params[:id])
  end

  def background_style_params
    params[:background_style].permit!
  end

end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
pulitzer-0.15.12 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.11 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.10 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.9 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.8 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.7 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.6 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.5 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.4 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.3 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.2 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.1 app/controllers/pulitzer/background_styles_controller.rb
pulitzer-0.15.0 app/controllers/pulitzer/background_styles_controller.rb