Migrate title attribute from rentable to video (and later, game)
[cs356-p2-videostore.git] / app / controllers / video_controller.rb
index a5508ae..529e695 100644 (file)
@@ -21,7 +21,11 @@ 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'