mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-02 13:33:40 +01:00
Glances widget use settings for URL
This commit is contained in:
parent
080bc44a6f
commit
802fe0f721
@ -1,12 +1,19 @@
|
||||
import { httpProxy } from "utils/proxy/http";
|
||||
import createLogger from "utils/logger";
|
||||
import { getSettings } from "utils/config/config";
|
||||
|
||||
const logger = createLogger("glances");
|
||||
|
||||
export default async function handler(req, res) {
|
||||
const { url } = req.query;
|
||||
const settings = getSettings()?.glances;
|
||||
if (!settings) {
|
||||
logger.error("There is no glances section in settings.yaml");
|
||||
return res.status(400).json({ error: "There is no glances section in settings.yaml" });
|
||||
}
|
||||
|
||||
const url = settings?.url;
|
||||
if (!url) {
|
||||
logger.error("Missing Glances URL");
|
||||
return res.status(400).json({ error: "Missing Glances URL" });
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user