Add "rentable type" to rentables
[cs356-p2-videostore.git] / app / controllers / video_controller.rb
index ad3aaee..4221c3c 100644 (file)
@@ -24,6 +24,7 @@ class VideoController < ApplicationController
     # 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.rtype = 'video'
     @rentable.save!
     @video = Video.new(params[:video])
     @video.rentable_id = @rentable.id