Nothing
#' Post entry to issue table
#'
#' Upload information to the \code{issue} table in the data registry
#'
#' @keywords internal
#'
#' @param severity an \code{integer} specifying the severity of the \code{issue}
#' @param description a \code{string} containing a free text description of the
#' \code{issue}
#' @param component_issues a \code{list} of \code{object_component} URLs with
#' which the \code{issue} is associated; this can be an empty list
#' @param endpoint a \code{string} specifying the registry endpoint
#'
#' @family new functions
#'
new_issue <- function(severity,
description,
component_issues,
endpoint = "http://127.0.0.1:8000/api/") {
post_data(table = "issue",
data = list(severity = severity,
description = description,
component_issues = component_issues),
endpoint = endpoint)
}
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.