strapi-plugin-config-sync/config/routes.json

37 lines
651 B
JSON
Raw Normal View History

2021-03-19 19:04:22 +01:00
{
"routes": [
{
"method": "GET",
2021-03-19 21:50:23 +01:00
"path": "/export",
"handler": "config.exportAll",
2021-03-19 21:50:23 +01:00
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/import",
"handler": "config.importAll",
2021-03-19 19:04:22 +01:00
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/all/from-files",
"handler": "config.getConfigsFromFiles",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/all/from-database",
"handler": "config.getConfigsFromDatabase",
"config": {
"policies": []
}
2021-03-19 19:04:22 +01:00
}
]
}