X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=app%2Fcontrollers%2Fvideo_controller.rb;h=24517042a3eb84f289087f7f6e0c434b40a4cc09;hb=32e35e775c982b99b462c43430fa6701654792a8;hp=ee34e5ca0b8aeb7d47ff310af5fb1bdcbca5e423;hpb=233a6b122bc4aed44a0babee0797d2dba6da5b06;p=cs356-p2-videostore.git diff --git a/app/controllers/video_controller.rb b/app/controllers/video_controller.rb index ee34e5c..2451704 100644 --- a/app/controllers/video_controller.rb +++ b/app/controllers/video_controller.rb @@ -1,11 +1,11 @@ class VideoController < ApplicationController + layout "admin" # Make sure that a user logs in before doing any action here before_filter :authorize, :except => :login def index - list - render :action => 'list' + render :action => 'index' end # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html) @@ -53,12 +53,13 @@ class VideoController < ApplicationController redirect_to :action => 'list' end - def searchbyname - render :action => 'searchbyname' - end - - def searchresults - query = params[:q] - @videos = Video.find(:all, :conditions => ["title like ?", query[0]+"%"]) + def search + if request.post? + @query = params[:q] + @videos = Video.find(:all, :conditions => ["title like ?", @query[0]+"%"]) + render :action => 'searchresults' + else + render :action => 'search' + end end end