()
| 774 | } |
| 775 | |
| 776 | export async function fetchAllUsers() { |
| 777 | const r = await fetch("/api/admin/getUsers.php", { credentials: "include" }); |
| 778 | return await r.json(); |
| 779 | } |
| 780 | |
| 781 | async function fetchAllGroups() { |
| 782 | if (window.__FR_IS_PRO !== true) return {}; |
no outgoing calls
no test coverage detected