mirror of
https://github.com/gethomepage/homepage.git
synced 2025-09-29 15:31:09 -04:00
* Add widget for calibre-web with reverse-proxy auth * Add custom proxy * Get it working * Fix lint issues * Calibreweb widget: Handle empty series / authors / books * Switch to new opds stats endpoint * Remove calibre-web custom proxy handler --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
import genericProxyHandler from "../../utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/{endpoint}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
stats: {
|
|
endpoint: "opds/stats",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|