aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/controllers/posts_controller.rb
blob: 3373443b16ad992e830625693d7af815d5a11f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class PostsController < ApplicationController

  def new
  end

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

    @post.save
    redirect_to :action => :index
  end
end