datastorm-open / shinymanager

Simple and secure authentification mechanism for single shiny applications.
https://datastorm-open.github.io/shinymanager/
379 stars 79 forks source link

Disable user-logs #188

Closed Lotta94 closed 2 months ago

Lotta94 commented 2 months ago

Hello,

I would like to use shinymanager to add a security layer to my shiny app. However, I do not want to track user statistics , especially on an individual basis. Therefore I'd like to have the option to completely disable logging the user statistics.

So far I did not find anything about that and just disabling the download of the user-logs is not enough in my case.

Thanks in advance!

bthieurmel commented 2 months ago

Hi. Available on last version 1.0.510

Using options("shinymanager.write_logs"), you can activate or not writing users connection logs. Default to TRUE

Using options("shinymanager.show_logs"), you can activate or not showing users connection logs in admin panel. Default to TRUE
Lotta94 commented 2 months ago

Great, thank you for the reply!