mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-02 21:43:39 +01:00
21 lines
361 B
JavaScript
21 lines
361 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/{endpoint}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
|
|
mappings: {
|
|
application: {
|
|
endpoint: "application",
|
|
},
|
|
client: {
|
|
endpoint: "client",
|
|
},
|
|
message: {
|
|
endpoint: "message",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|