mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
import { checkResponse, fetchWithTimeout } from './fetchUtil';
|
|
|
|
export async function setCardOpenMessage(server, message) {
|
|
let host = "";
|
|
if (server) {
|
|
host = `https://${server}`;
|
|
}
|
|
|
|
let status = await fetchWithTimeout(`${host}/contact/openMessage`, { method: 'PUT', body: JSON.stringify(message) });
|
|
checkResponse(status);
|
|
return await status.json();
|
|
}
|
|
|