This commit is contained in:
2026-01-29 19:47:55 +01:00
parent 506c8682fe
commit be9f9cf483
42 changed files with 756 additions and 2 deletions

View File

@@ -0,0 +1,44 @@
{
"kind": "collectionType",
"collectionName": "jobs",
"info": {
"singularName": "job",
"pluralName": "jobs",
"displayName": "Job"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {
"i18n": {
"localized": true
}
},
"attributes": {
"title": {
"type": "string",
"required": true,
"pluginOptions": {
"i18n": {
"localized": true
}
}
},
"description": {
"type": "richtext",
"pluginOptions": {
"i18n": {
"localized": true
}
}
},
"location": {
"type": "string",
"pluginOptions": {
"i18n": {
"localized": true
}
}
}
}
}

View File

@@ -0,0 +1,2 @@
import { factories } from '@strapi/strapi';
export default factories.createCoreController('api::job.job');

View File

@@ -0,0 +1,2 @@
import { factories } from '@strapi/strapi';
export default factories.createCoreRouter('api::job.job');

View File

@@ -0,0 +1,2 @@
import { factories } from '@strapi/strapi';
export default factories.createCoreService('api::job.job');