|
|
@@ -33,6 +33,9 @@ export class Organization extends Model {
|
|
|
@Str('', { nullable: true })
|
|
|
description!: string
|
|
|
|
|
|
+ @Attr([])
|
|
|
+ typeOfPractices!: []
|
|
|
+
|
|
|
@Str('', { nullable: true })
|
|
|
otherPractice!: string
|
|
|
|
|
|
@@ -66,6 +69,9 @@ export class Organization extends Model {
|
|
|
@Str('', { nullable: true })
|
|
|
twitter!: string
|
|
|
|
|
|
+ @Str('', { nullable: true })
|
|
|
+ youtube!: string
|
|
|
+
|
|
|
@Str('', { nullable: true })
|
|
|
facebook!: string
|
|
|
|
|
|
@@ -113,4 +119,7 @@ export class Organization extends Model {
|
|
|
|
|
|
@Num(0, { nullable: true })
|
|
|
pedagogicBudget!: number
|
|
|
+
|
|
|
+ @Str('', { nullable: true })
|
|
|
+ logo!: string
|
|
|
}
|