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