#' 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")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.