Skip to content

Instantly share code, notes, and snippets.

@alexshagov
Created May 9, 2016 16:16
Show Gist options
  • Save alexshagov/05e573bb65e4bab04e2467ae59974993 to your computer and use it in GitHub Desktop.
Save alexshagov/05e573bb65e4bab04e2467ae59974993 to your computer and use it in GitHub Desktop.
blog 2-5
class PostsController < ApplicationController
before_action :set_post, only: [:show, :edit, :update, :destroy]
# GET /posts
# GET /posts.json
def index
@posts = Post.all
end
# GET /posts/1
# GET /posts/1.json
def show
end
# GET /posts/new
def new
@post_form = PostForm.new
end
# GET /posts/1/edit
def edit
@post_form = PostForm.new(id: params[:id])
end
# POST /posts
# POST /posts.json
def create
@post_form = PostForm.new(post_params)
respond_to do |format|
if @post_form.save
format.html { redirect_to post_path id: @post_form.post.id, notice: 'Post was successfully created.' }
format.json { render :show, status: :created, location: @post_form }
else
format.html { render :new }
format.json { render json: @post_form.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /posts/1
# PATCH/PUT /posts/1.json
def update
@post_form = PostForm.new(post_params.merge(id: @post.id))
respond_to do |format|
if @post_form.update
format.html { redirect_to post_path id: @post_form.post.id, notice: 'Post was successfully updated.' }
format.json { render :show, status: :ok, location: @post }
else
format.html { render :edit }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end
# DELETE /posts/1
# DELETE /posts/1.json
def destroy
@post.destroy
respond_to do |format|
format.html { redirect_to posts_url, notice: 'Post was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_post
@post = Post.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def post_params
params.require(:post).permit(:title, :body, :tags)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment