stubbed in pool controller test

This commit is contained in:
albert
2011-01-20 18:30:36 -05:00
parent d84818366b
commit cd451109e8
12 changed files with 131 additions and 6 deletions

View File

@@ -1,25 +1,49 @@
class PoolsController < ApplicationController
respond_to :html, :xml, :json
before_filter :member_only, :except => [:index, :show]
before_filter :moderator_only, :only => [:destroy]
def new
@pool = Pool.new
respond_with(@pool)
end
def edit
@pool = Pool.find(params[:id])
respond_with(@pool)
end
def index
@search = Pool.search(params[:search])
@pools = @search.paginate(:page => params[:page])
end
def show
@pool = Pool.find(params[:id])
respond_with(@pool)
end
def create
@pool = Pool.create(params[:pool])
respond_with(@pool)
end
def update
@pool = Pool.find(params[:id])
@pool.update_attributes(params[:pool])
respond_with(@pool)
end
def destroy
@pool = Pool.find(params[:id])
@pool.destroy
respond_with(@pool)
end
def revert
@pool = Pool.find(params[:id])
@version = PoolVersion.find(params[:version_id])
@pool.revert_to!(@version)
respond_with(@pool)
end
end