mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
Remove widget type passing
This commit is contained in:
parent
d42271acf6
commit
f13144ceb8
@ -3,12 +3,17 @@ import createLogger from "utils/logger";
|
||||
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||||
import widgets from "widgets/widgets";
|
||||
import calendarProxyHandler from "widgets/calendar/proxy";
|
||||
import getServiceWidget from "utils/config/service-helpers";
|
||||
|
||||
const logger = createLogger("servicesProxy");
|
||||
|
||||
export default async function handler(req, res) {
|
||||
try {
|
||||
const { type } = req.query;
|
||||
const { service, group } = req.query;
|
||||
const serviceWidget = await getServiceWidget(group, service);
|
||||
let type = serviceWidget?.type;
|
||||
// calendar is an alias for ical
|
||||
if (type === "calendar") type = "ical";
|
||||
const widget = widgets[type];
|
||||
|
||||
if (!widget) {
|
||||
|
@ -10,7 +10,6 @@ export function formatApiCall(url, args) {
|
||||
|
||||
export function getURLSearchParams(widget, endpoint) {
|
||||
const params = new URLSearchParams({
|
||||
type: widget.type,
|
||||
group: widget.service_group,
|
||||
service: widget.service_name,
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user