|
|
@@ -27,9 +27,6 @@ export default class Parameters extends ApiModel {
|
|
|
@Str(null)
|
|
|
declare endCourseDate: string | null
|
|
|
|
|
|
- @Bool(false, { notNullable: true })
|
|
|
- declare trackingValidation: boolean
|
|
|
-
|
|
|
@Num(20)
|
|
|
declare average: number
|
|
|
|
|
|
@@ -125,9 +122,50 @@ export default class Parameters extends ApiModel {
|
|
|
@Bool(false, { notNullable: true })
|
|
|
declare sendAttendanceSms: boolean
|
|
|
|
|
|
- @Attr([])
|
|
|
- declare subdomains: []
|
|
|
+ @Bool(true, { notNullable: true })
|
|
|
+ declare generateAttendanceReport: boolean
|
|
|
+
|
|
|
+ @Bool(true, { notNullable: true })
|
|
|
+ declare consultPedagogicResult: boolean
|
|
|
+
|
|
|
+ @Bool(true, { notNullable: true })
|
|
|
+ declare consultTeacherListing: boolean
|
|
|
+
|
|
|
+ @Bool(true, { notNullable: false })
|
|
|
+ declare periodValidation: boolean
|
|
|
+
|
|
|
+ @Bool(true, { notNullable: false })
|
|
|
+ declare requiredValidation: boolean
|
|
|
|
|
|
@Bool(false, { notNullable: true })
|
|
|
declare notifyAdministrationAbsence: boolean
|
|
|
+
|
|
|
+ @Num(2, { notNullable: true })
|
|
|
+ declare numberConsecutiveAbsences: number
|
|
|
+
|
|
|
+ @Bool(false, { notNullable: false })
|
|
|
+ declare createCourse: boolean
|
|
|
+
|
|
|
+ @Bool(false, { notNullable: false })
|
|
|
+ declare updateCourse: boolean
|
|
|
+
|
|
|
+ @Bool(false, { notNullable: false })
|
|
|
+ declare deleteCourse: boolean
|
|
|
+
|
|
|
+ @Bool(false, { notNullable: false })
|
|
|
+ declare crudPedagogic: boolean
|
|
|
+
|
|
|
+ @Bool(false, { notNullable: false })
|
|
|
+ declare administrationCc: boolean
|
|
|
+
|
|
|
+ @Bool(true, { notNullable: false })
|
|
|
+ declare allowMembersToChangeGivenNameAndName: boolean
|
|
|
+
|
|
|
+ @Bool(true, { notNullable: false })
|
|
|
+ declare showEducationIsACollectivePractice: boolean
|
|
|
+
|
|
|
+ @Attr([])
|
|
|
+ declare subdomains: []
|
|
|
+
|
|
|
+
|
|
|
}
|