18 lines
326 B
JavaScript
Raw Normal View History

import genericProxyHandler from "utils/proxy/handlers/generic";
2023-02-01 23:22:59 +08:00
const widget = {
api: "{url}/api/{endpoint}/{slug}",
proxyHandler: genericProxyHandler,
mappings: {
status_page: {
endpoint: "status-page",
},
heartbeat: {
endpoint: "status-page/heartbeat",
},
},
2023-02-01 23:22:59 +08:00
};
export default widget;