(appId = 'app-id', key = 'app-key', secret = 'app-secret', port = 6001)
| 185 | } |
| 186 | |
| 187 | static newBackend(appId = 'app-id', key = 'app-key', secret = 'app-secret', port = 6001): any { |
| 188 | return new Pusher({ |
| 189 | appId, |
| 190 | key, |
| 191 | secret, |
| 192 | host: '127.0.0.1', |
| 193 | port, |
| 194 | encryptionMasterKeyBase64: 'nxzvbGF+f8FGhk/jOaZvgMle1tqxzF/VfUZLBLhhaH0=', |
| 195 | }); |
| 196 | } |
| 197 | |
| 198 | static newClientForPrivateChannel(clientOptions = {}, port = 6001, key = 'app-key', userData = {}): any { |
| 199 | return this.newClient({ |
no outgoing calls
no test coverage detected