Add searching to the games controller
[cs356-p2-videostore.git] / app / controllers / video_controller.rb
index 529e695..a5508ae 100644 (file)
@@ -21,11 +21,7 @@ class VideoController < ApplicationController
   end
 
   def create
-    @rentable = Rentable.new
-    @rentable.save!
-    puts "created new rentable with ID: #{@rentable.id}"
     @video = Video.new(params[:video])
-    @video.rentable_id = @rentable.id
     if @video.save
       flash[:notice] = 'Video was successfully created.'
       redirect_to :action => 'list'