Remove widget type passing

pull/3567/head
shamoon 6 months ago
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…
Cancel
Save