Nothing
#' @describeIn userMethods Remove users from a project.
#' @order 3
#' @export
deleteUsers <- function(rcon,
users,
...){
UseMethod("deleteUsers")
}
#' @rdname userMethods
#' @order 6
#' @export
deleteUsers.redcapApiConnection <- function(rcon,
users,
...)
{
###################################################################
# Argument Validation ####
coll <- checkmate::makeAssertCollection()
checkmate::assert_class(x = rcon,
classes = c("redcapApiConnection"),
add = coll)
checkmate::assert_character(x = users,
min.len = 1,
null.ok = FALSE,
any.missing = FALSE,
add = coll)
checkmate::reportAssertions(coll)
User <- rcon$users()
checkmate::assert_subset(x = users,
choices = User$username,
add = coll)
checkmate::reportAssertions(coll)
###################################################################
# Build the body list ####
body <- c(list(content = "user",
action = "delete"),
vectorToApiBodyList(users, "users"))
###################################################################
# Make the API Call ####
rcon$flush_users()
invisible(as.character(makeApiCall(rcon, body, ...)))
}
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.