homepage/src/widgets/linkwarden/widget.js
2024-08-09 21:11:39 +01:00

18 lines
285 B
JavaScript

import linkwardenProxyHandler from "./proxy";
const widget = {
api: "{url}/api/v1/{endpoint}",
proxyHandler: linkwardenProxyHandler,
mappings: {
collections: {
endpoint: "collections",
},
tags: {
endpoint: "tags",
},
},
};
export default widget;