X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=app%2Fcontrollers%2Fvideo_controller.rb;h=a5508aeb8f7e58facda15a98560449316714f7b5;hb=0dccca2d3c0e9d5e6eaa1c1ebee3670654fd8c43;hp=ad3aaee348a757003ed76d781ea0c87d56e9ca2b;hpb=2f9cf2b379b797bca623f032f7234f09e3b3c3af;p=cs356-p2-videostore.git diff --git a/app/controllers/video_controller.rb b/app/controllers/video_controller.rb index ad3aaee..a5508ae 100644 --- a/app/controllers/video_controller.rb +++ b/app/controllers/video_controller.rb @@ -21,12 +21,7 @@ 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'