aboutsummaryrefslogblamecommitdiffstats
path: root/guides/code/getting_started/app/controllers/posts_controller.rb
blob: 02689ad67b75b8ddb50cde3d41d9c1067e670824 (plain) (tree)
1
2
3
4
5
6
7
                                             
 

                                                                                       


                     




                                  

                                  

     

                                  
 
                                
                                             
        
                   
       
     
 

                    

     
            
                                 
 

                                             
        
                  

       




                                  
                              
     





                                                 
   
class PostsController < ApplicationController

  http_basic_authenticate_with name: "dhh", password: "secret", except: [:index, :show]

  def index
    @posts = Post.all
  end

  def show
    @post = Post.find(params[:id])
  end

  def edit
    @post = Post.find(params[:id])
  end

  def update
    @post = Post.find(params[:id])

    if @post.update(post_params)
      redirect_to action: :show, id: @post.id
    else
      render 'edit'
    end
  end

  def new
    @post = Post.new
  end

  def create
    @post = Post.new(post_params)

    if @post.save
      redirect_to action: :show, id: @post.id
    else
      render 'new'
    end
  end

  def destroy
    @post = Post.find(params[:id])
    @post.destroy

    redirect_to action: :index
  end

  private

    def post_params
      params.require(:post).permit(:title, :text)
    end
end