()
| 549 | } |
| 550 | |
| 551 | async function fetchAllPortals() { |
| 552 | const res = await fetch('/api/pro/portals/list.php', { |
| 553 | credentials: 'include', |
| 554 | headers: { 'X-CSRF-Token': window.csrfToken || '' } |
| 555 | }); |
| 556 | const data = await safeJson(res); |
| 557 | return data && typeof data === 'object' && data.portals && typeof data.portals === 'object' |
| 558 | ? data.portals |
| 559 | : {}; |
| 560 | } |
| 561 | |
| 562 | async function saveAllPortals(portals) { |
| 563 | const res = await fetch('/api/pro/portals/save.php', { |
no test coverage detected