|
@@ -1,5 +1,5 @@
|
|
|
-import ApiModel from "~/models/ApiModel";
|
|
|
|
|
-import {Bool, Num, Str, Uid, Attr} from "pinia-orm/dist/decorators";
|
|
|
|
|
|
|
+import ApiModel from '~/models/ApiModel'
|
|
|
|
|
+import { Bool, Num, Str, Uid, Attr } from 'pinia-orm/dist/decorators'
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* AP2i Model : Parameters
|
|
* AP2i Model : Parameters
|
|
@@ -13,16 +13,16 @@ export default class Parameters extends ApiModel {
|
|
|
declare id: number | string | null
|
|
declare id: number | string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare financialDate: string|null
|
|
|
|
|
|
|
+ declare financialDate: string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare musicalDate: string|null
|
|
|
|
|
|
|
+ declare musicalDate: string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare startCourseDate: string|null
|
|
|
|
|
|
|
+ declare startCourseDate: string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare endCourseDate: string|null
|
|
|
|
|
|
|
+ declare endCourseDate: string | null
|
|
|
|
|
|
|
|
@Bool(false, { notNullable: true })
|
|
@Bool(false, { notNullable: true })
|
|
|
declare trackingValidation: boolean
|
|
declare trackingValidation: boolean
|
|
@@ -34,16 +34,16 @@ export default class Parameters extends ApiModel {
|
|
|
declare editCriteriaNotationByAdminOnly: boolean
|
|
declare editCriteriaNotationByAdminOnly: boolean
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare smsSenderName: string|null
|
|
|
|
|
|
|
+ declare smsSenderName: string | null
|
|
|
|
|
|
|
|
@Bool(true, { notNullable: true })
|
|
@Bool(true, { notNullable: true })
|
|
|
declare logoDonorsMove: boolean
|
|
declare logoDonorsMove: boolean
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare otherWebsite: string|null
|
|
|
|
|
|
|
+ declare otherWebsite: string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare customDomain: string|null
|
|
|
|
|
|
|
+ declare customDomain: string | null
|
|
|
|
|
|
|
|
@Bool(false, { notNullable: true })
|
|
@Bool(false, { notNullable: true })
|
|
|
declare desactivateOpentalentSiteWeb: boolean
|
|
declare desactivateOpentalentSiteWeb: boolean
|
|
@@ -52,7 +52,7 @@ export default class Parameters extends ApiModel {
|
|
|
declare publicationDirectors: number[]
|
|
declare publicationDirectors: number[]
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare bulletinPeriod: string|null
|
|
|
|
|
|
|
+ declare bulletinPeriod: string | null
|
|
|
|
|
|
|
|
@Bool(false, { notNullable: true })
|
|
@Bool(false, { notNullable: true })
|
|
|
declare bulletinWithTeacher: boolean
|
|
declare bulletinWithTeacher: boolean
|
|
@@ -79,19 +79,19 @@ export default class Parameters extends ApiModel {
|
|
|
declare bulletinShowAverages: boolean
|
|
declare bulletinShowAverages: boolean
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare bulletinOutput: string|null
|
|
|
|
|
|
|
+ declare bulletinOutput: string | null
|
|
|
|
|
|
|
|
@Bool(true, { notNullable: true })
|
|
@Bool(true, { notNullable: true })
|
|
|
declare bulletinEditWithoutEvaluation: boolean
|
|
declare bulletinEditWithoutEvaluation: boolean
|
|
|
|
|
|
|
|
@Str('STUDENTS_AND_THEIR_GUARDIANS')
|
|
@Str('STUDENTS_AND_THEIR_GUARDIANS')
|
|
|
- declare bulletinReceiver: string|null
|
|
|
|
|
|
|
+ declare bulletinReceiver: string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare usernameSMS: string|null
|
|
|
|
|
|
|
+ declare usernameSMS: string | null
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare passwordSMS: string|null
|
|
|
|
|
|
|
+ declare passwordSMS: string | null
|
|
|
|
|
|
|
|
@Bool(true, { notNullable: true })
|
|
@Bool(true, { notNullable: true })
|
|
|
declare showAdherentList: boolean
|
|
declare showAdherentList: boolean
|
|
@@ -100,16 +100,16 @@ export default class Parameters extends ApiModel {
|
|
|
declare studentsAreAdherents: boolean
|
|
declare studentsAreAdherents: boolean
|
|
|
|
|
|
|
|
@Str(null)
|
|
@Str(null)
|
|
|
- declare qrCode: string|null
|
|
|
|
|
|
|
+ declare qrCode: string | null
|
|
|
|
|
|
|
|
@Str('Europe/Paris')
|
|
@Str('Europe/Paris')
|
|
|
- declare timezone: string|null
|
|
|
|
|
|
|
+ declare timezone: string | null
|
|
|
|
|
|
|
|
@Str('ANNUAL')
|
|
@Str('ANNUAL')
|
|
|
- declare educationPeriodicity: string|null
|
|
|
|
|
|
|
+ declare educationPeriodicity: string | null
|
|
|
|
|
|
|
|
@Str('BY_EDUCATION')
|
|
@Str('BY_EDUCATION')
|
|
|
- declare advancedEducationNotationType: string|null
|
|
|
|
|
|
|
+ declare advancedEducationNotationType: string | null
|
|
|
|
|
|
|
|
@Bool(false, { notNullable: true })
|
|
@Bool(false, { notNullable: true })
|
|
|
declare sendAttendanceEmail: boolean
|
|
declare sendAttendanceEmail: boolean
|
|
@@ -119,4 +119,10 @@ export default class Parameters extends ApiModel {
|
|
|
|
|
|
|
|
@Attr([])
|
|
@Attr([])
|
|
|
declare subdomains: []
|
|
declare subdomains: []
|
|
|
|
|
+
|
|
|
|
|
+ @Str(null)
|
|
|
|
|
+ declare superAdminEmail: string | null
|
|
|
|
|
+
|
|
|
|
|
+ @Bool(false, { notNullable: true })
|
|
|
|
|
+ declare notifyAdminOnConsecutiveAbsences: boolean
|
|
|
}
|
|
}
|