12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- module.exports = {
- create: {
- requestBody: [
- '!column_name',
- '!column_id',
- '!title',
- '!orgin',
- '!publish',
- '!content',
- 'picture'
- ]
- },
- destroy: {
- params: ['!id'],
- service: 'delete'
- },
- update: {
- params: ['!id'],
- requestBody: [
- '!column_name',
- '!column_id',
- '!title',
- '!orgin',
- '!publish',
- '!content',
- 'picture'
- ]
- },
- show: {
- parameters: {
- params: ['!id']
- },
- service: 'fetch'
- },
- index: {
- parameters: {
- query: {
- column_name : '!column_name',
- column_id : '!column_id',
- title : '!title',
- orgin : '!orgin',
- publish: '!publish',
- content : '!content',
- picture : 'picture'
- }
- },
- service: 'query',
- options: {
- query: ['skip', 'limit'],
- sort: ['meta.createdAt'],
- desc: true,
- count: true
- }
- },
- };
|