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

29 lines
458 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": "/diff",
"handler": "config.getDiff",
"config": {
"policies": []
}
2021-03-19 19:04:22 +01:00
}
]
}