18 lines
319 B
JavaScript
Raw Normal View History

2022-11-25 16:05:53 +01:00
import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/api/{endpoint}",
proxyHandler: genericProxyHandler,
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;