mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-12 03:52:18 +08:00
16 lines
317 B
JavaScript
16 lines
317 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/api/{endpoint}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
statistics: {
|
|
endpoint: "statistics/?format=json",
|
|
validate: ["documents_total"],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|