Advertisement
danilborchevkin

defaultMessages

Apr 28th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. botInstance.data.messages.push(
  2. {
  3. id: 'subscribe',
  4. starting: false,
  5. default: false,
  6. poll:false,
  7. name: 'Подписка',
  8. elements: [
  9. {
  10. 'type': 'text',
  11. 'content': 'Спасибо за подписку'
  12. }
  13. ],
  14. 'triggers':[
  15. {
  16. 'type': 'tags',
  17. 'tags':[
  18. ]
  19. }
  20. ]
  21. },
  22. {
  23. id: 'unsubscribe',
  24. starting: false,
  25. default: false,
  26. poll:false,
  27. name: 'Отписка',
  28. elements: [
  29. {
  30. 'type': 'text',
  31. 'content': 'Вы успешно отписались'
  32. }
  33. ],
  34. 'triggers':[
  35. {
  36. 'type': 'tags',
  37. 'tags':[
  38. ]
  39. }
  40. ]
  41. }
  42. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement