Login with different users

0
Hello all, I want to login as different user in my app and each user can see only his page. But whenever I logged in with different username and password it shows me the same page which created by previous user. How can i maintain different users session. how can i achieve this. Pls suggest some reading material .
asked
1 answers
0

You can make diffrent user roles with role based pages. 

See for documentation: https://docs.mendix.com/howto50/setting-up-the-navigation-structure

 

Or you can make a microflow datasource on the home page that picks only the items of this person. Or you can do this with entity acces: https://docs.mendix.com/howto/logic-business-rules/define-access-rules-using-xpath 

answered