Skip to content

Instantly share code, notes, and snippets.

View klm's full-sized avatar

Keith Morrison klm

  • Vista Higher Learning
  • Boston, MA
View GitHub Profile
@klm
klm / gist:134870
Created June 23, 2009 21:56 — forked from r00k/gist:134861
def show
if @trial.active? || is_admin?
respond_to do |format|
format.html
format.xml { render :xml => @trial.to_xml(:include => [:topics, :contacts, :investigators, :institutions]) }
end
else
render 'admin_only'
end
end