mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
18 lines
326 B
JavaScript
18 lines
326 B
JavaScript
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/api/{endpoint}/{slug}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
status_page: {
|
|
endpoint: "status-page",
|
|
},
|
|
heartbeat: {
|
|
endpoint: "status-page/heartbeat",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|