ENCOA-267

This commit is contained in:
Tiago Ribeiro
2024-12-23 10:18:52 +00:00
parent 9cf13e3f26
commit e9c961e633
6 changed files with 157 additions and 142 deletions

View File

@@ -61,7 +61,9 @@ export type RolePermission =
"edit_grading_system" |
"view_student_performance" |
"upload_classroom" |
"download_user_list"
"download_user_list" |
"view_student_record" |
"download_student_record"
export const DEFAULT_PERMISSIONS: RolePermission[] = [
"view_students",
@@ -136,5 +138,7 @@ export const ADMIN_PERMISSIONS: RolePermission[] = [
"edit_grading_system",
"view_student_performance",
"upload_classroom",
"download_user_list"
"download_user_list",
"view_student_record",
"download_student_record"
]