Reactive Filtering Based on User Login - Shinyauthr
问题 I have a QA Shiny Dashboard app that has a master dataset that must filter the rows used in subsequent tables / maps according to user login details. For example: if the user logs in with a particular username (location@email.com) then the reactive function selects rows that contain this username and passes these to the shiny app for rendering. Example of basic premise: username <- "location@email.com" new_dataset <- filter(dataset, column %like% username output$table <- renderTable ({ new