Skip to content

Instantly share code, notes, and snippets.

@r00k
Created June 23, 2009 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save r00k/134861 to your computer and use it in GitHub Desktop.
Save r00k/134861 to your computer and use it in GitHub Desktop.
def show
if (@trial.closed? || @trial.nonrelevant?) && !is_admin?
render 'admin_only'
else
respond_to do |format|
format.html
format.xml { render :xml => @trial.to_xml(:include => [:topics, :contacts, :investigators, :institutions]) }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment