lemail2
Version:
Strapi Email designer plugin.
54 lines • 1.07 kB
JSON
{
"routes": [
{
"method": "GET",
"path": "/templates",
"handler": "designer.getTemplates",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/templates/:templateId",
"handler": "designer.getTemplate",
"config": {
"policies": []
}
},
{
"method": "POST",
"path": "/templates/:templateId",
"handler": "designer.saveTemplate",
"config": {
"policies": []
}
},
{
"method": "DELETE",
"path": "/templates/:templateId",
"handler": "designer.deleteTemplate",
"config": {
"policies": []
}
},
{
"method": "POST",
"path": "/templates/duplicate/:sourceTemplateId",
"handler": "designer.duplicateTemplate",
"config": {
"policies": []
}
},
{
"method": "GET",
"path": "/config",
"handler": "config.getConfig",
"config": {
"policies": [
"admin::isAuthenticatedAdmin"
]
}
}
]
}