We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patients
Description
Create basic back-end part for Patients (they are not Users and they can't log in the application) and they can be added by Users with "doctor" Role.
Users
"doctor"
Role
Prerequisites
Roles
Facilities
Acceptance criteria
Patient
ssn
status
waiting
in-progress
completed
discontinued
name
surname
telephone?
email?
address?
medicalHistory
files
meta
The text was updated successfully, but these errors were encountered:
Studies
Appointments
No branches or pull requests
Description
Create basic back-end part for
Patients
(they are notUsers
and they can't log in the application) and they can be added byUsers
with"doctor"
Role
.Prerequisites
Roles
#3Facilities
#4Acceptance criteria
Patient
class using sequelize-typescript with fields:ssn
Social Security number (or any other unique country-specific ID)status
- patient's status, allowed values:waiting
,in-progress
,completed
,discontinued
name
surname
telephone?
(optional)email?
(optional)address?
(optional)medicalHistory
- description of medical history of the patientfiles
- medical reports, column needs to be encypted!meta
- metadata dictionary where other less specific information can be storedPatients
but only accessible for authorizedUsers
with"doctor"
Role
Facilities
(Database schema and predefinedFacilities
#4) andPatients
The text was updated successfully, but these errors were encountered: