MED-109: add doctor role and basic view (#45)
* MED-109: add doctor role and basic view * add role to accounts * remove old super admin and doctor sql
This commit is contained in:
@@ -30,6 +30,8 @@ const PathsSchema = z.object({
|
||||
accountMembers: z.string().min(1),
|
||||
accountBillingReturn: z.string().min(1),
|
||||
joinTeam: z.string().min(1),
|
||||
doctor: z.string().min(1),
|
||||
admin: z.string().min(1),
|
||||
}),
|
||||
});
|
||||
|
||||
@@ -63,6 +65,8 @@ const pathsConfig = PathsSchema.parse({
|
||||
analysisResults: '/home/analysis-results',
|
||||
orderAnalysis: '/home/order-analysis',
|
||||
orderHealthAnalysis: '/home/order-health-analysis',
|
||||
doctor: '/doctor',
|
||||
admin: '/admin',
|
||||
},
|
||||
} satisfies z.infer<typeof PathsSchema>);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user