()
| 13445 | } |
| 13446 | |
| 13447 | getNotificationsData() { |
| 13448 | const notifyEmailInput = getId('notifyEmailInput'); |
| 13449 | const switchNotifyUserJoin = getId('switchNotifyUserJoin'); |
| 13450 | |
| 13451 | return { |
| 13452 | peer_name: this.peer_name, |
| 13453 | peer_uuid: this.peer_uuid, |
| 13454 | notifications: { |
| 13455 | mode: { |
| 13456 | email: notifyEmailInput.value, |
| 13457 | //slack... |
| 13458 | }, |
| 13459 | events: { |
| 13460 | join: switchNotifyUserJoin.checked, |
| 13461 | // leave... |
| 13462 | }, |
| 13463 | }, |
| 13464 | }; |
| 13465 | } |
| 13466 | |
| 13467 | // #################################################### |
| 13468 | // HELPERS |
no test coverage detected