|
- {
- "routes": [
- {
- "method": "GET",
- "path": "/template-emails",
- "handler": "template-email.find",
- "config": {
- "policies": []
- }
- },
- {
- "method": "GET",
- "path": "/template-emails/count",
- "handler": "template-email.count",
- "config": {
- "policies": []
- }
- },
- {
- "method": "GET",
- "path": "/template-emails/:id",
- "handler": "template-email.findOne",
- "config": {
- "policies": []
- }
- },
- {
- "method": "POST",
- "path": "/template-emails",
- "handler": "template-email.create",
- "config": {
- "policies": []
- }
- },
- {
- "method": "PUT",
- "path": "/template-emails/:id",
- "handler": "template-email.update",
- "config": {
- "policies": []
- }
- },
- {
- "method": "DELETE",
- "path": "/template-emails/:id",
- "handler": "template-email.delete",
- "config": {
- "policies": []
- }
- }
- ]
- }
|