Shiny authentication module for use with logoutUI
logout(input, output, session, active)
input | shiny input |
---|---|
output | shiny output |
session | shiny session |
active | [reactive] supply the returned |
The reactive output of this module should be supplied as the log_out
argument to the
login module to trigger the logout process
Call via shiny::callModule(logout, "your_id", ...)
if (FALSE) { logout_init <- shiny::callModule(logout, "logout", active = reactive(user_credentials()$user_auth)) }