Allow modules to exclude their inputs

This commit is contained in:
Winston Chang
2016-07-25 22:10:38 -05:00
parent 573a71f09d
commit 3f1985a9dc
5 changed files with 59 additions and 23 deletions

View File

@@ -1,20 +1,17 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/bookmark-state.R
\name{configureBookmarking}
\alias{configureBookmarking}
\title{Configure bookmarking for a Shiny application}
\name{enableBookmarking}
\alias{enableBookmarking}
\title{Enable bookmarking for a Shiny application}
\usage{
configureBookmarking(store = c("url", "server", "disable"), exclude = NULL)
enableBookmarking(store = c("url", "server", "disable"))
}
\arguments{
\item{store}{Either \code{"url"}, which encodes all of the relevant values in
a URL, \code{"server"}, which saves to disk on the server, or
\code{"disable"}, which disables any previously-enabled bookmarking.}
\item{exclude}{A character vector of names of input values to exclude from
bookmarking.}
}
\description{
Configure bookmarking for a Shiny application
Enable bookmarking for a Shiny application
}

17
man/setBookmarkExclude.Rd Normal file
View File

@@ -0,0 +1,17 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/bookmark-state.R
\name{setBookmarkExclude}
\alias{setBookmarkExclude}
\title{Exclude inputs from bookmarking}
\usage{
setBookmarkExclude(names = character(0),
session = getDefaultReactiveDomain())
}
\arguments{
\item{names}{A character vector containing names of inputs to exclude from
bookmarking.}
}
\description{
Exclude inputs from bookmarking
}