node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
{
"kind": "collectionType",
"collectionName": "elements",
"info": {
"singularName": "element",
"pluralName": "elements",
"displayName": "Element"
},
"options": {
"draftAndPublish": true
},
"attributes": {
"Name": {
"type": "string"
},
"Description": {
"type": "blocks"
},
"Summary": {
"type": "text"
},
"Image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}

View File

@@ -0,0 +1,7 @@
"use strict";
/**
* element controller
*/
Object.defineProperty(exports, "__esModule", { value: true });
const strapi_1 = require("@strapi/strapi");
exports.default = strapi_1.factories.createCoreController('api::element.element');

View File

@@ -0,0 +1,7 @@
"use strict";
/**
* element router
*/
Object.defineProperty(exports, "__esModule", { value: true });
const strapi_1 = require("@strapi/strapi");
exports.default = strapi_1.factories.createCoreRouter('api::element.element');

View File

@@ -0,0 +1,7 @@
"use strict";
/**
* element service
*/
Object.defineProperty(exports, "__esModule", { value: true });
const strapi_1 = require("@strapi/strapi");
exports.default = strapi_1.factories.createCoreService('api::element.element');

20
server/dist/src/index.js vendored Normal file
View File

@@ -0,0 +1,20 @@
"use strict";
// import type { Core } from '@strapi/strapi';
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
register( /* { strapi }: { strapi: Core.Strapi } */) { },
/**
* An asynchronous bootstrap function that runs before
* your application gets started.
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
*/
bootstrap( /* { strapi }: { strapi: Core.Strapi } */) { },
};