aboutsummaryrefslogblamecommitdiffstats
path: root/guides/code/getting_started/app/controllers/posts_controller.rb
blob: 947cd2a767c87994f6d177b3f5440849dd2b340c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                             
 


                     




                                  
         
                    

     


                                   




                                                   

     
class PostsController < ApplicationController

  def index
    @posts = Post.all
  end

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

  def new
    @post = Post.new
  end

  def create
    @post = Post.new(params[:post])

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