(ep)
| 70 | const currentEndpoint = channelEndpoints[channelId] || ''; |
| 71 | |
| 72 | const getEndpointType = (ep) => { |
| 73 | if (ep === '/api/ratio_config') return 'ratio_config'; |
| 74 | if (ep === '/api/pricing') return 'pricing'; |
| 75 | return 'custom'; |
| 76 | }; |
| 77 | |
| 78 | const currentType = getEndpointType(currentEndpoint); |
| 79 |
no outgoing calls
no test coverage detected