Tychobra / polished

Authentication and Administration for Shiny apps
https://polished.tech
Other
233 stars 36 forks source link

Feature request: Is there a way to add a username in addition to the email #226

Open TarJae opened 4 months ago

TarJae commented 4 months ago

I am using this code in the server part of my shiny app to fetch user information:

...
output$welcome <- renderText({
  paste("Hello", session$userData$user()[3])
})
....

and in the ui part:

...
 verbatimTextOutput("welcome"),
...

And I get this: image

I am thinking of fetching the name or username to welcome the user not the email?!