R/open_todoist_website.R

Defines functions open_todoist_website_profile

Documented in open_todoist_website_profile

#' Open todoist website
#'
#' @param verbose make it talk
#'
#' @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")
}

Try the rtodoist package in your browser

Any scripts or data that you put into this service are public.

rtodoist documentation built on July 2, 2020, 1:46 a.m.