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