mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-18 10:39:49 +00:00
14 lines
278 B
JavaScript
14 lines
278 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/api/v1/{endpoint}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
"Request/count": {
|
|
endpoint: "Request/count",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|