1234567891011121314151617181920212223242526272829303132333435 |
- {
- "model": {
- "posts": {
- "id": "number",
- "type": "string",
- "date": "date"
- }
- },
-
- "view": {
- "posts": {
- "init": "function",
- "load": "function",
- "html": "Post.html"
- }
- },
-
- "controller": {
- "posts": {
- "create": "post",
- "update": "post",
- "delete": "get",
- "read": "get"
- }
- }
- }
|