Hi ThinkR,
Thank you for the development of this amazing package which I always use when I am faced with the development of a very large web application.
I would like to pass to several golem module an additional argument which is the reactive object of check_credentials of shiny manager to:
- To call only the user data.
- To activate or deactivate based on the type of user
This is the way that i am operating right now, but finding many problems.
UI part
app_ui<-shinymanager::secure_app(app_ui, status="primary")
Server Part
res_auth <- secure_server(check_credentials = check_credentials(credentials)) auth_output<- reactive({ reactiveValuesToList(res_auth)})
Module Server
mod_golem_User("golem_ui_1", res_auth)
Then when i am calling the res_auth() in the golem module it is as if it did not exist