R/open_todoist_website.R

Defines functions open_todoist_website_profile

Documented in open_todoist_website_profile

#' Open todoist website
#'
#' @param verbose boolean that make the function verbose
#'
#' @importFrom utils browseURL
#'
#' @return open integration webpage from todoist website
#' @export
#'
#' @examples
#' open_todoist_website_profile()
open_todoist_website_profile <- function(verbose = TRUE) {
  if (verbose) {
    message("opening https://todoist.com/prefs/integrations")
  }
  browseURL("https://todoist.com/prefs/integrations")
}
VincentGuyader/todoist documentation built on July 4, 2023, 10:04 p.m.