logout {shinyauthr} | R Documentation |
logout server module (deprecated)
Description
Deprecated. Use logoutServer instead.
Arguments
input |
shiny input |
output |
shiny output |
session |
shiny session |
active |
[reactive] supply the returned |
Details
Shiny authentication module for use with logoutUI
Call via shiny::callModule(shinyauthr::logout, "id", ...)
This function is now deprecated in favour of logoutServer which uses shiny's new moduleServer method as opposed to the callModule method used by this function. See the logoutServer documentation For details on how to migrate.
Value
Reactive boolean, to be supplied as the log_out
argument of the
login module to trigger the logout process
Examples
## Not run:
logout_init <- shiny::callModule(
logout,
id = "logout",
active = reactive(user_credentials()$user_auth)
)
## End(Not run)
[Package shinyauthr version 1.0.0 Index]