From 8c2ffb6f04adc857dc8b49f27616daf991b1318d Mon Sep 17 00:00:00 2001 From: Thomas Sandmann Date: Wed, 27 Nov 2024 15:12:32 -0800 Subject: [PATCH] Update boxr__internal_misc.R Update help message, pointing to `box_auth_service` instead of `box_auth_jwt`. --- R/boxr__internal_misc.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/boxr__internal_misc.R b/R/boxr__internal_misc.R index 9e50756..be8d344 100644 --- a/R/boxr__internal_misc.R +++ b/R/boxr__internal_misc.R @@ -152,7 +152,7 @@ box_datetime <- function(x) { checkAuth <- function() { if (is.null(getOption("boxr.token") %||% getOption("boxr_token_jwt"))) stop("It doesn't look like you've set up authentication for boxr yet.\n", - "See ?box_auth or ?box_auth_jwt") + "See ?box_auth or ?box_auth_service") }