Make system unable to check out already checked out items
[cs356-p2-videostore.git] / app / controllers / game_controller.rb
index 1b57435..42a037e 100644 (file)
@@ -21,12 +21,7 @@ class GameController < ApplicationController
   end
 
   def create
-    # A new rentable must be created whenever we create a new game
-    @rentable = Rentable.new
-    @rentable.rtype = 'game'
-    @rentable.save
     @game = Game.new(params[:game])
-    @game.rentable_id = @rentable.id
     if @game.save
       flash[:notice] = 'Game was successfully created.'
       redirect_to :action => 'list'
@@ -53,4 +48,13 @@ class GameController < ApplicationController
     Game.find(params[:id]).destroy
     redirect_to :action => 'list'
   end
+
+  def searchbyname
+    render :action => 'searchbyname'
+  end
+
+  def searchresults
+    query = params[:q]
+    @games = Game.find(:all, :conditions => ["title like ?", query[0]+"%"])
+  end
 end