From 1cd34712e6056ad1672f871ff23ce31e26c410be Mon Sep 17 00:00:00 2001 From: Shane Halloran Date: Tue, 3 Oct 2023 17:46:11 +0100 Subject: [PATCH] Adding docs for suppress_users --- R/check.R | 1 + man/check.Rd | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/R/check.R b/R/check.R index 83e08c5..ddd9b43 100644 --- a/R/check.R +++ b/R/check.R @@ -7,6 +7,7 @@ #' @param token Connect api token. If NULL, use the ENV variable CONNECT_API_KEY #' @param dir directory location of the the config file #' @param debug_level Integer, 0 to 2. +#' @param suppress_users Whether to suppress output of Connect users' data. #' @details #' Debug level description #' * 0: clean-up all files; suppress all noise diff --git a/man/check.Rd b/man/check.Rd index a56b48b..17de975 100644 --- a/man/check.Rd +++ b/man/check.Rd @@ -4,7 +4,13 @@ \alias{check} \title{Run Posit Checks} \usage{ -check(server = NULL, token = NULL, dir = ".", debug_level = 0:2) +check( + server = NULL, + token = NULL, + dir = ".", + debug_level = 0:2, + suppress_users = FALSE +) } \arguments{ \item{server}{Connect server. If NULL, use the ENV variable CONNECT_SERVER} @@ -14,6 +20,8 @@ check(server = NULL, token = NULL, dir = ".", debug_level = 0:2) \item{dir}{directory location of the the config file} \item{debug_level}{Integer, 0 to 2.} + +\item{suppress_users}{Whether to suppress output of Connect users' data.} } \description{ This functions runs all Posit tests.