mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-18 18:49:50 +00:00
20 lines
371 B
JavaScript
20 lines
371 B
JavaScript
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/api?cmd={endpoint}&apikey={key}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
issues: {
|
|
endpoint: "getIndex",
|
|
},
|
|
series: {
|
|
endpoint: "seriesjsonListing",
|
|
},
|
|
wanted: {
|
|
endpoint: "getWanted",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|