Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. {
  2. tagsOnPersons: [],
  3. tagsOnCompanies: []
  4. }
  5.  
  6. dodaje na firmie tag "text"
  7. {
  8. tagsOnPersons: [],
  9. tagsOnCompanies: ['text']
  10. }
  11.  
  12. dodaje na osobie tag "abc"
  13. {
  14. tagsOnPersons: ['abc'],
  15. tagsOnCompanies: ['text']
  16. }
  17.  
  18. dodaje na osobie tag "kunde"
  19. {
  20. tagsOnPersons: ['abc', 'kunde'],
  21. tagsOnCompanies: ['text']
  22. }
  23.  
  24. dodaje na 2 osobie tag "kunde"
  25. {
  26. tagsOnPersons: ['abc', 'kunde'],
  27. tagsOnCompanies: ['text']
  28. }
  29.  
  30. usuwam na 1 osobie tag "kunde"
  31. {
  32. tagsOnPersons: ['abc', 'kunde'],
  33. tagsOnCompanies: ['text']
  34. }
  35.  
  36. usuwam na 2 osobie tag "kunde"
  37. {
  38. tagsOnPersons: ['abc'],
  39. tagsOnCompanies: ['text']
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement