homepage/src/widgets/widgets.js
Jason Fischer 03fa2f86d7
Add AdGuard, Bazarr, and Coin Market Cap widgets
- Allow setting HTTP method in widget.js
- Allow sending allow listed query params to proxy
2022-09-25 14:31:41 -07:00

18 lines
367 B
JavaScript

import adguard from "./adguard/widget";
import bazarr from "./bazarr/widget";
import coinmarketcap from "./coinmarketcap/widget";
import overseerr from "./overseerr/widget";
import radarr from "./radarr/widget";
import sonarr from "./sonarr/widget"
const widgets = {
adguard,
bazarr,
coinmarketcap,
overseerr,
radarr,
sonarr,
};
export default widgets;