Small Cleanups + Merchandise Search
[cs356-p2-videostore.git] / app / controllers / merchandise_controller.rb
index 79a85dd..f819b30 100644 (file)
@@ -52,4 +52,14 @@ class MerchandiseController < ApplicationController
     Merchandise.find(params[:id]).destroy
     redirect_to :action => 'list'
   end
+
+  def search
+    if request.post?
+      @query = params[:q]
+      @merchandises = Merchandise.find(:all, :conditions => ["title like ?", "%#{@query[0]}%"])
+      render :action => 'searchresults'
+    else
+      render :action => 'search'
+    end
+  end
 end