Deprecated. Use logoutServer instead.
shiny input
shiny output
shiny session
[reactive] supply the returned user_auth
boolean reactive from login
here to hide/show the logout button
Reactive boolean, to be supplied as the log_out
argument of the
login module to trigger the logout process
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.
if (FALSE) {
logout_init <- shiny::callModule(
logout,
id = "logout",
active = reactive(user_credentials()$user_auth)
)
}