Add fields on Event

This commit is contained in:
2025-04-25 20:14:03 +02:00
parent a10497888c
commit c811ad7e21
4 changed files with 76 additions and 2 deletions

View File

@@ -705,6 +705,7 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
attributes: {
choral: Schema.Attribute.Relation<'manyToOne', 'api::choral.choral'>;
color: Schema.Attribute.String;
comment: Schema.Attribute.Text;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
@@ -712,6 +713,7 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<'oneToMany', 'api::event.event'> &
Schema.Attribute.Private;
location: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
start: Schema.Attribute.DateTime;
title: Schema.Attribute.String;