Sha256: 732b8bf8db00c3f8822680db1493cc08756762c775fc7a3d3439fa3cc915bb2a

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

require_dependency "phcpresspro/application_controller"

module Phcpresspro
	class News::PostsController < ApplicationController

		# Filters & Security
		before_action :set_news_post, only: [:edit, :update, :destroy]

		# News Post Index
		def index
			@news_posts = News::Post.all
		end

		# Single News Post (/blog/posts/1)
		#def show
		#end

		# New News Article
		def new
			@news_post = News::Post.new
		end

		# Edit News Article
		def edit
		end

		# Create News Article
		def create
			@news_post = News::Post.new(news_post_params)
			if @news_post.save  
				redirect_to news_posts_path, notice: 'News Article was Successfully Created.'
				else
					render 'new'
			end
		end

		# Update News Article
		def update
			if @news_post.update(news_post_params)
				redirect_to news_posts_path, notice: 'News Article was Successfully Updated.'
			else
				render :edit
			end
		end

		# Delete News Destroy
		def destroy
			@news_post.destroy
			redirect_to news_posts_path, notice: 'News Article was Successfully Destroyed.'
		end

		private

		# Common Callbacks
		def set_news_post
			@news_post = News::Post.find(params[:id])
		end

		# Whitelist
		def news_post_params
			params.require(:news_post).permit(:newspsttitle, :newspsttext, :newspstexcerpts, :pststatus, :pstcategory, :pstimage, :remove_pstimage, :category_id, :user_id, :membership_id, :oganization_id)
		end

	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
phcpresspro-3.1.2 app/controllers/phcpresspro/news/posts_controller.rb