18 lines
334 B
JavaScript
Raw Normal View History

2023-06-05 16:23:37 +02:00
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
2022-11-25 16:05:53 +01:00
const widget = {
api: "{url}/api/{endpoint}",
2023-06-05 16:23:37 +02:00
proxyHandler: credentialedProxyHandler,
2022-11-25 16:05:53 +01:00
mappings: {
"statistics": {
endpoint: "statistics/?format=json",
2022-11-25 16:05:53 +01:00
validate: [
"documents_total"
2022-11-25 16:05:53 +01:00
]
},
},
};
export default widget;