server start

This commit is contained in:
2025-06-21 20:45:30 +02:00
parent abf864d98b
commit 1ff948af19
24 changed files with 4066 additions and 839 deletions

View File

@@ -376,6 +376,7 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
export interface ApiElementElement extends Struct.CollectionTypeSchema {
collectionName: 'elements';
info: {
description: '';
displayName: 'Element';
pluralName: 'elements';
singularName: 'element';
@@ -401,6 +402,9 @@ export interface ApiElementElement extends Struct.CollectionTypeSchema {
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
Url: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.Unique;
};
}