create_custom_app: Custom App Helper

View source: R/custom_app.R

create_custom_appR Documentation

Custom App Helper

Description

Create a manifest for a custom Slack App. See the Slack Apps vignette for details about using custom Slack Apps.

Usage

create_custom_app(
  app_name,
  redirect_urls = NULL,
  description = NULL,
  long_description = NULL
)

Arguments

app_name

character; a name to give to your custom app.

redirect_urls

character; urls to which the app can be redirected during authentication. We recommend including localhost on a specific port (eg, http://127.0.0.1:4242) for testing, and often a shinyapps.io url.

description

character; an optional one-sentence description of your app. If this parameter is NULL, an adequate description is provided.

long_description

character; an optional paragraph (or more) giving more details about your app. This field supports markdown. If this parameter is NULL, an adequate long description is provided.

Value

The app manifest as an editable R object, invisibly.

Examples

create_custom_app(
  app_name = "my_cool_app",
  redirect_urls = c("http://127.0.0.1:4242", "myapp.shinyapps.io")
)

yonicd/slackteams documentation built on March 13, 2023, 6:26 a.m.