databag/app/mobile/api/setAccountStatus.js
2022-09-07 00:32:06 -07:00

8 lines
298 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function setAccountStatus(token, accountId, disabled) {
let res = await fetchWithTimeout(`/admin/accounts/${accountId}/status?token=${token}`, { method: 'PUT', body: JSON.stringify(disabled) })
checkResponse(res);
}