Nothing
#' get_author_url
#'
#' @keywords internal
#'
#' @param endpoint a \code{string} specifying the registry endpoint
#'
get_author_url <- function(endpoint) {
user_url <- get_url(table = "users",
query = list(username = "admin"),
endpoint = endpoint)
assertthat::assert_that(length(user_url) == 1)
user_id <- extract_id(user_url, endpoint = endpoint)
user_author_url <- get_entry("user_author",
query = list(user = user_id),
endpoint = endpoint)
assertthat::assert_that(length(user_author_url) == 1)
user_author_url[[1]]$author
}
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.