config.js 486 B

12345678910111213141516171819202122232425262728
  1. // default config
  2. module.exports = {
  3. // 可以公开访问的Controller
  4. publicController: [
  5. // 格式为controller
  6. 'index',
  7. 'catalog',
  8. 'topic',
  9. 'auth',
  10. 'goods',
  11. 'brand',
  12. 'search',
  13. 'region'
  14. ],
  15. // 可以公开访问的Action
  16. publicAction: [
  17. // 格式为: controller+action
  18. 'comment/list',
  19. 'comment/count',
  20. 'cart/index',
  21. 'cart/add',
  22. 'cart/checked',
  23. 'cart/update',
  24. 'cart/delete',
  25. 'cart/goodscount'
  26. ]
  27. };