@campxdev/shared 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -21,6 +21,8 @@ export enum Permission {
|
|
|
21
21
|
CLASSROOM_EDIT = 'can_classroom_edit',
|
|
22
22
|
CLASSROOM_DELETE = 'can_classroom_delete',
|
|
23
23
|
CLASSROOM_ADD = 'can_classroom_add',
|
|
24
|
+
CAN_CLASSROOM_SUBJECTS_VIEW = 'can_classroom_subjects_view',
|
|
25
|
+
CAN_CLASSROOM_SUBJECT_ATTENDANCE_EDIT = 'can_classroom_subject_attendance_edit',
|
|
24
26
|
|
|
25
27
|
// Tasks
|
|
26
28
|
|
|
@@ -341,6 +343,8 @@ export interface IPermissions {
|
|
|
341
343
|
can_tasks_edit: boolean
|
|
342
344
|
can_tasks_change_status: boolean
|
|
343
345
|
can_tasks_delete: boolean
|
|
346
|
+
can_classroom_subject_attendance_edit: boolean
|
|
347
|
+
can_classroom_subjects_view: boolean
|
|
344
348
|
}
|
|
345
349
|
|
|
346
350
|
interface IPermissionsStore {
|