Nothing
#' @rdname org_perm
#' @export
#'
org_allows_forking = function(org) {
arg_is_chr_scalar(org)
res = purrr::safely(github_api_org)(org)
if (failed(res)) {
cli::cli_abort(c(
"Failed to retrieve details for org {.val {org}}.",
error_bullets(res)
))
}
result(res)$members_can_fork_private_repositories
}
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.