(type)
| 982 | } |
| 983 | |
| 984 | handleProxy(type) { |
| 985 | if (!this.proxy) { |
| 986 | return null; |
| 987 | } |
| 988 | const proxySuffix = this.proxyOptions[type || 'data']; |
| 989 | let proxy = this.serverUrl + proxySuffix; |
| 990 | if (typeof this.proxy === 'string') { |
| 991 | proxy = this.proxy; |
| 992 | } |
| 993 | return proxy; |
| 994 | } |
| 995 | |
| 996 | handleWithCredentials(proxyUrl, serviceUrl, defaultValue = this.withCredentials) { |
| 997 | if (serviceUrl && serviceUrl.includes('https://www.supermapol.com')) { |
no outgoing calls
no test coverage detected