Files
homepage/src/widgets/gluetun/widget.js
Tarow 6da46dd3b1
Some checks failed
Docs / Linting Checks (push) Has been cancelled
Docker / Linting Checks (push) Has been cancelled
Docker / Docker Build & Push (push) Has been cancelled
Docs / Test Build (push) Has been cancelled
Docs / Build & Deploy (push) Has been cancelled
Fix: Support Gluetun widget auth (#4034)
2024-09-24 11:15:46 -07:00

16 lines
311 B
JavaScript

import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
const widget = {
api: "{url}/v1/{endpoint}",
proxyHandler: credentialedProxyHandler,
mappings: {
ip: {
endpoint: "publicip/ip",
validate: ["public_ip", "region", "country"],
},
},
};
export default widget;