Prettify the login page
[cs356-p2-videostore.git] / app / controllers / game_controller.rb
index 39f5485..31fe67e 100644 (file)
@@ -1,4 +1,8 @@
 class GameController < ApplicationController
+
+  # Make sure that the user has logged in before they can take any action
+  before_filter :authorize
+
   def index
     list
     render :action => 'list'
@@ -55,6 +59,6 @@ class GameController < ApplicationController
 
   def searchresults
     query = params[:q]
-    @games = Game.find(:all, :conditions => ["title = ?", query])
+    @games = Game.find(:all, :conditions => ["title like ?", query[0]+"%"])
   end
 end