We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a386bb9 commit 8d2b9f7Copy full SHA for 8d2b9f7
R/auth.R
@@ -28,6 +28,9 @@ Auth <- R6::R6Class("Auth", # nolint: object_name_linter.
28
#' @return A character string representing the retrieved token.
29
#' @export
30
token = function() {
31
+ if (is.null(private$token_value)) {
32
+ self$get_token()
33
+ }
34
private$token_value
35
},
36
0 commit comments