()
| 2 | |
| 3 | const User = Peer.extend({ |
| 4 | serialize() { |
| 5 | const data = { |
| 6 | uuid: this.uuid, |
| 7 | public_ip: this.public_ip, |
| 8 | label: this.label, |
| 9 | avatarUrl: this.avatarUrl, |
| 10 | peer: { |
| 11 | id: this.get('peer.id'), |
| 12 | }, |
| 13 | }; |
| 14 | |
| 15 | return data; |
| 16 | }, |
| 17 | }); |
| 18 | |
| 19 | export default User; |
nothing calls this directly
no outgoing calls
no test coverage detected