Hi everyone,
I am working on a power apps project meant to help my company's employees to receive trainings via online education. The platform is meant to present to the students all the necessary information, course content, and other files in a concentrated manner. Students would be able to enlist themselves into specific courses and their progression within those courses would be recorded and displayed to them as either "ongoing" courses or "finished" courses. Right now, I have managed to create and connect a sharepoint list with my login and sign up pages. In this list, I store some basic user information such as username, password, role...etc. The authentication does work. But after this is where I am kinda stuck.
There are some functions for the web app that I would like to deploy to be restricted to specific user type. And considering I want to display some basic user information such as course progression, I must make the app run on individual sessions and load the corresponding information of the current user.
Essentially, at the current moment, even if there is an authentication process whenever the app is launched, no matter who the user is, they are all presented to the same app with the same information. I want to be able to load user specific data that only the current user can see. Would appreciate any kind of help. Thanks in advance.