mirror of
https://github.com/strapi/strapi.git
synced 2025-11-14 09:07:59 +00:00
Remove models
Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
parent
efa547aa31
commit
a5ff026568
@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
"routes": [
|
|
||||||
{
|
|
||||||
"method": "GET",
|
|
||||||
"path": "/babas",
|
|
||||||
"handler": "baba.find",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "GET",
|
|
||||||
"path": "/babas/count",
|
|
||||||
"handler": "baba.count",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "GET",
|
|
||||||
"path": "/babas/:id",
|
|
||||||
"handler": "baba.findOne",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "POST",
|
|
||||||
"path": "/babas",
|
|
||||||
"handler": "baba.create",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "PUT",
|
|
||||||
"path": "/babas/:id",
|
|
||||||
"handler": "baba.update",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "DELETE",
|
|
||||||
"path": "/babas/:id",
|
|
||||||
"handler": "baba.delete",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/controllers.html#core-controllers)
|
|
||||||
* to customize this controller
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {};
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#lifecycle-hooks)
|
|
||||||
* to customize this model
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {};
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
{
|
|
||||||
"kind": "collectionType",
|
|
||||||
"collectionName": "babas",
|
|
||||||
"info": {
|
|
||||||
"name": "testvalidationspublish",
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"options": {
|
|
||||||
"increments": true,
|
|
||||||
"timestamps": true,
|
|
||||||
"draftAndPublish": true
|
|
||||||
},
|
|
||||||
"attributes": {
|
|
||||||
"name": {
|
|
||||||
"type": "string",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
"namepasrep": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"dz": {
|
|
||||||
"type": "dynamiczone",
|
|
||||||
"components": [
|
|
||||||
"compos.comporeqf"
|
|
||||||
],
|
|
||||||
"required": true,
|
|
||||||
"min": 1
|
|
||||||
},
|
|
||||||
"ref": {
|
|
||||||
"type": "component",
|
|
||||||
"repeatable": true,
|
|
||||||
"component": "compos.comporeqf",
|
|
||||||
"required": true,
|
|
||||||
"min": 1
|
|
||||||
},
|
|
||||||
"rzeaer": {
|
|
||||||
"type": "component",
|
|
||||||
"repeatable": false,
|
|
||||||
"component": "compos.comporeqf",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/services.html#core-services)
|
|
||||||
* to customize this service
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {};
|
|
||||||
@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
"routes": [
|
|
||||||
{
|
|
||||||
"method": "GET",
|
|
||||||
"path": "/tatas",
|
|
||||||
"handler": "tata.find",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "GET",
|
|
||||||
"path": "/tatas/count",
|
|
||||||
"handler": "tata.count",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "GET",
|
|
||||||
"path": "/tatas/:id",
|
|
||||||
"handler": "tata.findOne",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "POST",
|
|
||||||
"path": "/tatas",
|
|
||||||
"handler": "tata.create",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "PUT",
|
|
||||||
"path": "/tatas/:id",
|
|
||||||
"handler": "tata.update",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"method": "DELETE",
|
|
||||||
"path": "/tatas/:id",
|
|
||||||
"handler": "tata.delete",
|
|
||||||
"config": {
|
|
||||||
"policies": []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/controllers.html#core-controllers)
|
|
||||||
* to customize this controller
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {};
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#lifecycle-hooks)
|
|
||||||
* to customize this model
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {};
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
{
|
|
||||||
"kind": "collectionType",
|
|
||||||
"collectionName": "tatas",
|
|
||||||
"info": {
|
|
||||||
"name": "testvalidationsnormal",
|
|
||||||
"description": ""
|
|
||||||
},
|
|
||||||
"options": {
|
|
||||||
"increments": true,
|
|
||||||
"timestamps": true,
|
|
||||||
"draftAndPublish": false
|
|
||||||
},
|
|
||||||
"attributes": {
|
|
||||||
"name": {
|
|
||||||
"type": "string",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
"namepasrep": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"dz": {
|
|
||||||
"type": "dynamiczone",
|
|
||||||
"components": [
|
|
||||||
"compos.comporeqf"
|
|
||||||
],
|
|
||||||
"required": true,
|
|
||||||
"min": 1
|
|
||||||
},
|
|
||||||
"ref": {
|
|
||||||
"type": "component",
|
|
||||||
"repeatable": true,
|
|
||||||
"component": "compos.comporeqf",
|
|
||||||
"required": false,
|
|
||||||
"min": 1
|
|
||||||
},
|
|
||||||
"rzeaer": {
|
|
||||||
"type": "component",
|
|
||||||
"repeatable": false,
|
|
||||||
"component": "compos.comporeqf",
|
|
||||||
"required": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/services.html#core-services)
|
|
||||||
* to customize this service
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = {};
|
|
||||||
@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"collectionName": "components_compos_comporeqfs",
|
|
||||||
"info": {
|
|
||||||
"name": "comporeqf",
|
|
||||||
"icon": "ad"
|
|
||||||
},
|
|
||||||
"options": {},
|
|
||||||
"attributes": {
|
|
||||||
"name": {
|
|
||||||
"type": "string",
|
|
||||||
"required": true
|
|
||||||
},
|
|
||||||
"namenot": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user