.experience.js 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module.exports = {
  2. create: {
  3. requestBody: ['planid', 'termid', 'batchid', 'classid', 'studentid', 'title', 'content'],
  4. },
  5. destroy: {
  6. params: ['!id'],
  7. service: 'delete',
  8. },
  9. update: {
  10. params: ['!id'],
  11. requestBody: ['planid', 'termid', 'batchid', 'classid', 'studentid', 'title', 'content'],
  12. },
  13. show: {
  14. parameters: {
  15. params: ['!id'],
  16. },
  17. service: 'fetch',
  18. },
  19. index: {
  20. parameters: {
  21. query: {
  22. termid: 'termid',
  23. batchid: 'batchid',
  24. classid: 'classid',
  25. studentid: 'studentid',
  26. content: 'content',
  27. },
  28. },
  29. service: 'query',
  30. options: {
  31. query: ['skip', 'limit'],
  32. sort: ['meta.createdAt'],
  33. desc: true,
  34. count: true,
  35. },
  36. },
  37. docx: {
  38. requestBody: ['planid', 'termid', 'batchid', 'classid', 'studentid'],
  39. service: 'exportDocx',
  40. },
  41. };