mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-03 22:13:39 +01:00
21 lines
357 B
JavaScript
21 lines
357 B
JavaScript
![]() |
import credentialedProxyHandler from "utils/proxies/credentialed";
|
||
|
|
||
|
const widget = {
|
||
|
api: "{url}/{endpoint}",
|
||
|
proxyHandler: credentialedProxyHandler,
|
||
|
|
||
|
mappings: {
|
||
|
"application": {
|
||
|
endpoint: "application"
|
||
|
},
|
||
|
"client": {
|
||
|
endpoint: "client"
|
||
|
},
|
||
|
"message": {
|
||
|
endpoint: "message"
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default widget;
|