Initial commit
This commit is contained in:
commit
affe27b3e8
49 changed files with 33325 additions and 0 deletions
0
backend/strapi/src/api/.gitkeep
Normal file
0
backend/strapi/src/api/.gitkeep
Normal file
31
backend/strapi/src/api/note/content-types/note/schema.json
Normal file
31
backend/strapi/src/api/note/content-types/note/schema.json
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"kind": "collectionType",
|
||||
"collectionName": "notes",
|
||||
"info": {
|
||||
"singularName": "note",
|
||||
"pluralName": "notes",
|
||||
"displayName": "note"
|
||||
},
|
||||
"options": {
|
||||
"draftAndPublish": true
|
||||
},
|
||||
"pluginOptions": {},
|
||||
"attributes": {
|
||||
"title": {
|
||||
"type": "string",
|
||||
"required": true
|
||||
},
|
||||
"content": {
|
||||
"type": "text"
|
||||
},
|
||||
"owners": {
|
||||
"type": "relation",
|
||||
"relation": "oneToMany",
|
||||
"target": "admin::user"
|
||||
},
|
||||
"lastViewed": {
|
||||
"type": "datetime",
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
}
|
||||
9
backend/strapi/src/api/note/controllers/note.js
Normal file
9
backend/strapi/src/api/note/controllers/note.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* note controller
|
||||
*/
|
||||
|
||||
const { createCoreController } = require('@strapi/strapi').factories;
|
||||
|
||||
module.exports = createCoreController('api::note.note');
|
||||
9
backend/strapi/src/api/note/routes/note.js
Normal file
9
backend/strapi/src/api/note/routes/note.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* note router
|
||||
*/
|
||||
|
||||
const { createCoreRouter } = require('@strapi/strapi').factories;
|
||||
|
||||
module.exports = createCoreRouter('api::note.note');
|
||||
9
backend/strapi/src/api/note/services/note.js
Normal file
9
backend/strapi/src/api/note/services/note.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
/**
|
||||
* note service
|
||||
*/
|
||||
|
||||
const { createCoreService } = require('@strapi/strapi').factories;
|
||||
|
||||
module.exports = createCoreService('api::note.note');
|
||||
Loading…
Add table
Add a link
Reference in a new issue