(userId: string)
| 84 | authedAdminApi.patch(`users/${userId}/is-suspended`, { json: { isSuspended } }).json<User>(); |
| 85 | |
| 86 | export const deleteUser = async (userId: string) => authedAdminApi.delete(`users/${userId}`); |
| 87 | |
| 88 | export const updateUserPassword = async (userId: string, password: string) => |
| 89 | authedAdminApi |
no test coverage detected