|
1 | 1 |
|
2 | 2 | const patientBaseStreams = [ |
3 | 3 | // profile |
| 4 | + {id: 'profile', name: 'Profile'}, |
4 | 5 | {id: 'profile-name', name: 'Name', parentId: 'profile'}, |
5 | 6 | {id: 'profile-nationality', name: 'Nationality', parentId: 'profile'}, |
6 | 7 | {id: 'profile-date-of-birth', name: 'Date of Birth', parentId: 'profile'}, |
7 | 8 | {id: 'profile-location', name: 'Location', parentId: 'profile'}, |
8 | 9 | {id: 'profile-sex', name: 'Sex', parentId: 'profile'}, |
9 | 10 | // family |
| 11 | + {id: 'family', name: 'Family'}, |
10 | 12 | {id: 'family-children', name: 'Children', parentId: 'family'}, |
11 | 13 | // fertility |
| 14 | + {id: 'fertility', name: 'Fertility'}, |
12 | 15 | {id: 'fertility-miscarriages', name: 'Miscarriages', parentId: 'fertility'}, |
13 | 16 | {id: 'fertility-traings', name: 'Trainings', parentId: 'fertility'}, |
14 | 17 | {id: 'fertility-cycles', name: 'Cycles', parentId: 'fertility'}, |
15 | 18 | {id: 'fertility-cycles-charted-extimation', name: 'Cycles charted estimation', parentId: 'fertility'}, |
16 | 19 | {id: 'fertility-ttc-tta', name: 'Trying to conceive / Avoiding pregnancy', parentId: 'fertility'}, |
| 20 | + // body |
| 21 | + {id: 'body', name: 'Body'}, |
| 22 | + {id: 'body-height', name: 'Body Height', parentId: 'body'}, |
| 23 | + {id: 'body-weight', name: 'Body Weight', parentId: 'body'}, |
17 | 24 | ]; |
18 | 25 |
|
19 | 26 | const patientBasePermissions = [ |
|
0 commit comments