Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "routes": [{
- "method": "GET",
- "path": "/posts",
- "handler": "Post.find",
- "config": {
- "policies": []
- }
- },
- {
- "method": "GET",
- "path": "/posts/count",
- "handler": "Post.count",
- "config": {
- "policies": []
- }
- },
- {
- "method": "GET",
- "path": "/posts/:id",
- "handler": "Post.findOne",
- "config": {
- "policies": []
- }
- },
- {
- "method": "GET",
- "path": "/posts/:slug",
- "handler": "Post.findOne",
- "config": {
- "policies": []
- }
- },
- {
- "method": "POST",
- "path": "/posts",
- "handler": "Post.create",
- "config": {
- "policies": []
- }
- },
- {
- "method": "PUT",
- "path": "/posts/:id",
- "handler": "Post.update",
- "config": {
- "policies": []
- }
- },
- {
- "method": "DELETE",
- "path": "/posts/:id",
- "handler": "Post.delete",
- "config": {
- "policies": []
- }
- }
- ]
- }
Add Comment
Please, Sign In to add comment