1 class VideoController < ApplicationController
4 render :action => 'list'
7 # GETs should be safe (see http://www.w3.org/2001/tag/doc/whenToUseGet.html)
8 verify :method => :post, :only => [ :destroy, :create, :update ],
9 :redirect_to => { :action => :list }
12 @video_pages, @videos = paginate :videos, :per_page => 10
16 @video = Video.find(params[:id])
24 @video = Video.new(params[:video])
26 flash[:notice] = 'Video was successfully created.'
27 redirect_to :action => 'list'
29 render :action => 'new'
34 @video = Video.find(params[:id])
38 @video = Video.find(params[:id])
39 if @video.update_attributes(params[:video])
40 flash[:notice] = 'Video was successfully updated.'
41 redirect_to :action => 'show', :id => @video
43 render :action => 'edit'
48 Video.find(params[:id]).destroy
49 redirect_to :action => 'list'
53 render :action => 'searchbyname'
58 @videos = Video.find(:all, :conditions => ["title like ?", query[0]+"%"])