(what: string)
| 52 | // 500 with a flat message — the cause carries the detail into the host's error |
| 53 | // capture, and is deliberately not echoed to an API consumer. |
| 54 | const readFailed = (what: string) => () => |
| 55 | new AdminUsersError({ message: `Failed to list ${what}` }); |
| 56 | |
| 57 | // --------------------------------------------------------------------------- |
| 58 | // Host identity join |
no outgoing calls
no test coverage detected