Updated the expiry date to be based on the expiry date

This commit is contained in:
Tiago Ribeiro
2024-12-30 15:36:20 +00:00
parent b52259794e
commit 17154be8bf
8 changed files with 164 additions and 18 deletions

View File

@@ -63,7 +63,9 @@ export type RolePermission =
"upload_classroom" |
"download_user_list" |
"view_student_record" |
"download_student_record"
"download_student_record" |
"pay_entity" |
"view_payment_record"
export const DEFAULT_PERMISSIONS: RolePermission[] = [
"view_students",
@@ -140,5 +142,7 @@ export const ADMIN_PERMISSIONS: RolePermission[] = [
"upload_classroom",
"download_user_list",
"view_student_record",
"download_student_record"
"download_student_record",
"pay_entity",
"view_payment_record"
]