Hello everyone!
I am working on developing an app that essentially combines a personality test with personalized career recommendations.
Each user would have their own personalized dashboard, showing their test progress and individual career suggestions.
Is this possible in Glide? Specifically, can each user see only their personal content, without it being shared with everyone else?
Thanks a lot!
Arthur
Yes, that’s most certainly possible in Glide.
I’d recommend reviewing the below section of the Glide docs, and in particular the section on Row Owners.
1 Like
Thanks for your quick answer Darren !
Could you be a it more specific on how you would do it ? I understand that row owners is to hide informations for all others users (ex: emails adress) for security matters. But I don’t see how I could layout specific data on each users interface such as personality test results or career recommandations ?
Thanks again !
All you really need to do is build a single data driven interface that all users will see. Then as long as you correctly apply row owners then each user will only see their own data.
That’s about as specific as I can be without understanding more how your data is structured and exactly what you want to show on the interface.
1 Like
OK, I will dive into the developement then and if i am blocked i’ll come back to you. Thanks a lot for your answers !