({ user_uid, ...props }: UpdateUserAdminProps)
| 1685 | UpdateUserAdminPathParams |
| 1686 | |
| 1687 | export const UpdateUserAdmin = ({ user_uid, ...props }: UpdateUserAdminProps) => ( |
| 1688 | <Mutate<TypesUser, UsererrorError, void, OpenapiUpdateAdminRequest, UpdateUserAdminPathParams> |
| 1689 | verb="PATCH" |
| 1690 | path={`/admin/users/${user_uid}/admin`} |
| 1691 | base={getConfig('api/v1')} |
| 1692 | {...props} |
| 1693 | /> |
| 1694 | ) |
| 1695 | |
| 1696 | export type UseUpdateUserAdminProps = Omit< |
| 1697 | UseMutateProps<TypesUser, UsererrorError, void, OpenapiUpdateAdminRequest, UpdateUserAdminPathParams>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…