-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add information about roles in the system
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# User roles | ||
## Short overview | ||
|Role|Description| | ||
|----|-----------| | ||
|Admin|Kind of superuser in the system. Can manage system, resources, practitioners, etc.| | ||
|Receptionist|Can schedule/cancel appointments for the patient and manage their invoices.| | ||
|Practitioner|Can manage their own appointments, questionnaires, and patient care.| | ||
|Patient|Can see their own invoices and medical information related to them.| | ||
## Modules by role | ||
| Module | Admin | Receptionist | Practitioner | Patient |URL| | ||
|---------------------|-|-|-------|--------------|--------------|---------| | ||
| Invoices | ✅ | ✅ | ❌ | ✅ |https://emr.beda.software/invoices| | ||
| [Services](HealthcareServiceManagement) | ✅ | ❌ | ❌ | ❌ |https://emr.beda.software/healthcare-services| | ||
| Encounters | ✅ | ❌ | ✅ | ❌ |https://emr.beda.software/encounters| | ||
| Patients | ✅ | ❌ | ✅ | ❌ |https://emr.beda.software/patients| | ||
| Practitioners | ✅ | ❌ | ❌ | ❌ |https://emr.beda.software/practitioners| | ||
| Questionnaires | ✅ | ❌ | ✅ | ❌ |https://emr.beda.software/questionnaires| | ||
| Scheduling | ❌ | ✅ | ❌ | ❌ |https://emr.beda.software/scheduling| | ||
| Patient's dashboard | ❌ | ❌ | ✅ | ✅ |https://emr.beda.software/ for the Patient| | ||
## Demo Credentials | ||
|Role|Login|Password| | ||
|----|-----|--------| | ||
|Admin|admin|password| | ||
|Receptionist|receptionist|password| | ||
|Practitioner|practitioner1/practitioner2|password| | ||
|Patient|patient1/patient2|password| |