feat: add titrePhare
Déploiement API PROD / build (push) Successful in 2m8s
Déploiement API PROD / deploy (push) Successful in 53s

This commit is contained in:
2026-06-20 18:37:23 +04:00
parent 03e2449be3
commit 2540c04782
2 changed files with 6 additions and 0 deletions
@@ -61,6 +61,11 @@
"isOKIAwtis": { "isOKIAwtis": {
"type": "boolean", "type": "boolean",
"default": false "default": false
},
"titrePhare": {
"type": "relation",
"relation": "manyToOne",
"target": "api::parole.parole"
} }
} }
} }
+1
View File
@@ -462,6 +462,7 @@ export interface ApiArtisteArtiste extends Struct.CollectionTypeSchema {
prenom: Schema.Attribute.String; prenom: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.String; slug: Schema.Attribute.String;
titrePhare: Schema.Attribute.Relation<'manyToOne', 'api::parole.parole'>;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;