Guest User

Untitled

a guest
Sep 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. zcoinCenters: [{
  2. _id: Schema.Types.ObjectId,
  3. title: {
  4. [config.locales.vi]: String,
  5. [config.locales.en]: String
  6. },
  7. content: {
  8. [config.locales.vi]: String,
  9. [config.locales.en]: String
  10. },
  11. icon: String,
  12. order: Number,
  13. type: {
  14. type: String,
  15. enum: config.zcoinCenter.all.split(' ')
  16. },
  17. active: {
  18. type: Boolean,
  19. default: false
  20. }
  21. }]
  22.  
  23.  
  24. zcoinCenter: {
  25. all: 'bill rating referral onlineCategory',
  26. bill: 'bill',
  27. rating: 'rating',
  28. referral: 'referral',
  29. onlineCategory: 'onlineCategory'
  30. }
Add Comment
Please, Sign In to add comment