Files
homepage/src/widgets/mailcow/widget.js
Simon 85736c55c9
Some checks are pending
Docker / Linting Checks (push) Waiting to run
Docker / Docker Build & Push (push) Blocked by required conditions
Docs / Linting Checks (push) Waiting to run
Docs / Test Build (push) Blocked by required conditions
Docs / Build & Deploy (push) Blocked by required conditions
Feature: mailcow widget (#3993)
---------

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
2024-09-14 07:59:41 -07:00

15 lines
277 B
JavaScript

import credentialedProxyHandler from "../../utils/proxy/handlers/credentialed";
const widget = {
api: "{url}/api/v1/get/{endpoint}",
proxyHandler: credentialedProxyHandler,
mappings: {
domains: {
endpoint: "domain/all",
},
},
};
export default widget;