databag/app/mobile/src/api/setNodeStatus.js
2022-09-13 15:15:49 -07:00

8 lines
251 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function setNodeStatus(server, token) {
let status = await fetchWithTimeout(`http://${server}/admin/status?token=${token}`, { method: 'PUT' });
checkResponse(status);
}