Guest User

Untitled

a guest
Jun 26th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. user: {
  2. username: 'bob1',
  3. password: '1234',
  4. email: 'someone@example.com',
  5. profile: {
  6. name: {
  7. first: 'Bob',
  8. last: 'Marley'
  9. },
  10. gender: 'male',
  11. country: 'US'
  12. },
  13. userKeys: {
  14. username: { show: true },
  15. password: { show: false },
  16. email: { show: 'maybe' },
  17. profile: {
  18. name: {
  19. first: { show: true },
  20. last: { show: true }
  21. },
  22. gender: { show: false },
  23. country: { show: 'maybe' }
  24. }
  25. }
  26. }
Add Comment
Please, Sign In to add comment