databag/app/mobile/src/api/setAccountSearchable.js
2022-09-14 12:18:16 -07:00

8 lines
292 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function setAccountSearchable(server, token, flag) {
let res = await fetchWithTimeout(`https://${server}/account/searchable?agent=${token}`, { method: 'PUT', body: JSON.stringify(flag) })
checkResponse(res);
}