Sha256: 6516271516d4da7a8bb743b45d0e37493f897c2a7f9b0dfb543368cd49f23cae

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

class Admin::PostCategoriesController < Admin::ApplicationController

	layout false
	respond_to :html, :json

	before_filter :find_category, :only => [:show, :edit, :update, :destroy]

	def index
		@post_categories = SpudPostCategory.ordered
		respond_with @post_categories
	end

	def edit
		respond_with @post_category
	end

	def update
		if @post_category.update_attributes(category_params)
			flash.now[:notice] = 'Post Category was successfully updated'
			respond_with @post_category, :location => admin_post_categories_path
		else
			render 'new', :status => 422
		end
	end

	def new
		@post_category = SpudPostCategory.new
		respond_with @post_category
	end

	def create
		@post_category = SpudPostCategory.new(category_params)
		if @post_category.save
			flash.now[:notice] = 'Post Category was successfully created'
			respond_with @post_category, :location => admin_post_categories_path
		else
			render 'new', :status => 422
		end
	end

	def destroy
		if @post_category.destroy
			flash.now[:notice] = 'Post Category was successfully deleted'
			@post_categories = SpudPostCategory.ordered
			render 'index'
		else
			respond_with @post_category, :location => admin_post_categories_path
		end
	end

	private

	def find_category
		@post_category = SpudPostCategory.find(params[:id])
	end

	def category_params
		params.require(:spud_post_category).permit(:name)
	end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tb_blog-1.3.3 app/controllers/admin/post_categories_controller.rb
tb_blog-1.3.2 app/controllers/admin/post_categories_controller.rb
tb_blog-1.3.1 app/controllers/admin/post_categories_controller.rb
tb_blog-1.3.0 app/controllers/admin/post_categories_controller.rb
tb_blog-1.3.0.beta1 app/controllers/admin/post_categories_controller.rb