inst/plumber/capitalize/plumber.R

#
# This is a Tableau Extension built using plumbertableau.
#
# Find out more about building Tableau Extensions with plumbertableau here:
#
#    https://rstudio.github.io/plumbertableau/
#

library(plumber)
library(plumbertableau)

#* @apiTitle String utilities
#* @apiDescription Simple functions for mutating strings

#* Capitalize incoming text
#* @tableauArg str_value:[character] Strings to be capitalized
#* @tableauReturn [character] A capitalized string(s)
#* @post /capitalize
function(str_value) {
  toupper(str_value)
}

# The Plumber router modifier tableau_extension is required. This object is a
# function that acts as a plumber router modifier. For more details, see the
# Plumber documentation:
# https://www.rplumber.io/articles/annotations.html#plumber-router-modifier
#* @plumber
tableau_extension
rstudio/plumbertableau documentation built on Jan. 30, 2024, 10:41 a.m.