Nothing
      #' Returns a list of available queries in the current repository.
#' 
#' @export
getQueries <- function() {
	paths <- sqlPaths()
	files <- character()
	for(p in paths) {
		files = c(files, list.files(path=p, pattern="*.sql"))
	}
	return( substr(files, 0, nchar(files)-4) )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.