Skip to content

Commit

Permalink
feat: add webinaire end time
Browse files Browse the repository at this point in the history
  • Loading branch information
rtaieb committed Oct 17, 2024
1 parent d00795c commit 1dc2d98
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
15 changes: 11 additions & 4 deletions src/api/webinaire/content-types/webinaire/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"info": {
"singularName": "webinaire",
"pluralName": "webinaires",
"displayName": "Webinaire"
"displayName": "Webinaire",
"description": ""
},
"options": {
"draftAndPublish": true
Expand All @@ -26,11 +27,17 @@
"type": "string",
"required": false
},
"date_evenement": {
"type": "datetime"
},
"lien_replay": {
"type": "string"
},
"jour_evenement": {
"type": "date"
},
"heure_debut": {
"type": "time"
},
"heure_fin": {
"type": "time"
}
}
}
5 changes: 4 additions & 1 deletion types/generated/contentTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1864,6 +1864,7 @@ export interface ApiWebinaireWebinaire extends Schema.CollectionType {
singularName: 'webinaire';
pluralName: 'webinaires';
displayName: 'Webinaire';
description: '';
};
options: {
draftAndPublish: true;
Expand All @@ -1879,8 +1880,10 @@ export interface ApiWebinaireWebinaire extends Schema.CollectionType {
}
>;
lien_inscription: Attribute.String;
date_evenement: Attribute.DateTime;
lien_replay: Attribute.String;
jour_evenement: Attribute.Date;
heure_debut: Attribute.Time;
heure_fin: Attribute.Time;
createdAt: Attribute.DateTime;
updatedAt: Attribute.DateTime;
publishedAt: Attribute.DateTime;
Expand Down

0 comments on commit 1dc2d98

Please sign in to comment.