Fix object relationships between video and rentable
[cs356-p2-videostore.git] / app / controllers / video_controller.rb
index a5508ae..ad3aaee 100644 (file)
@@ -21,7 +21,12 @@ class VideoController < ApplicationController
   end
 
   def create
+    # A new rentable must be created and saved whenever we create a new
+    # video. This is so we have a rentable_id to add to the video.
+    @rentable = Rentable.new
+    @rentable.save!
     @video = Video.new(params[:video])
+    @video.rentable_id = @rentable.id
     if @video.save
       flash[:notice] = 'Video was successfully created.'
       redirect_to :action => 'list'