mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-18 18:49:50 +00:00
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/api/{endpoint}/",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
space: {
|
|
endpoint: "space",
|
|
},
|
|
keyword: {
|
|
endpoint: "keyword",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|