Hello,
I am working on two application one for doctors and the other one for patient and they share the same database.
The Goal of the application is to allow patient and doctors to share information betwen them.
I added two boolean in the user tab isDoctor = true if it is the doctors app and isPatient = True if it’s the patient app.
But if a patient is not a user of the app or don’t want to use I want to allow doctors to create a user = Patient.
I try to use the sign in form and it create the patient user in the database but the problem is that after that creation my doctors session is log out and the new created patient is the one who is log in. How can I do to keep the doctor log in and the patient created ?
Thank’s
@Zahra You will have to have a temp collection and expose a form to enter patient details. In the end as part of form save button action, you can add an additional action to create/update User collection record.
2 Likes
Thank’s @Kaigal ! I try and it’s working very well !!
2 Likes
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.