feat (patient): add error page for patient add page permission

This commit is contained in:
Abizrh
2025-08-13 10:12:12 +07:00
parent 6e5d5863ab
commit db9a87d825
18 changed files with 88 additions and 49 deletions

No files matched your search

+3 -1
View File
@@ -1,3 +1,5 @@
import type { RoleAccess } from '~/models/role'
export const PAGE_PERMISSIONS = {
'/patient': {
doctor: ['R'],
@@ -7,4 +9,4 @@ export const PAGE_PERMISSIONS = {
billing: ['R'],
management: ['R'],
},
} as const
} as const satisfies Record<string, RoleAccess>