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

@@ -1,6 +1,6 @@
{
"name": "harmony-back",
"version": "0.11.0",
"version": "0.11.1",
"private": true,
"description": "A Strapi application",
"scripts": {

View File

@@ -29,6 +29,12 @@
"relation": "manyToOne",
"target": "api::choral.choral",
"inversedBy": "calendar"
},
"comment": {
"type": "text"
},
"location": {
"type": "string"
}
}
}

View File

@@ -14,7 +14,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
},
"x-generation-date": "2025-04-25T16:44:00.461Z"
"x-generation-date": "2025-04-25T18:13:52.323Z"
},
"x-strapi-config": {
"plugins": [
@@ -8760,6 +8760,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -11418,6 +11424,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -13611,6 +13623,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -16252,6 +16270,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -18841,6 +18865,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -21458,6 +21488,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -23991,6 +24027,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -24867,6 +24909,12 @@
],
"example": "string or id"
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"locale": {
"type": "string"
},
@@ -27048,6 +27096,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -27281,6 +27335,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
@@ -30084,6 +30144,12 @@
}
}
},
"comment": {
"type": "string"
},
"location": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"

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;