# File app/controllers/backlogs_controller.rb, line 45
  def create
    @backlog = Backlog.new(params[:backlog])
    if @backlog.save
      flash[:notice] = 'Backlog was successfully created.'
      redirect_to :action => :show, :id => @backlog
    else
      render :action => 'new'
    end
  end