mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 06:08:48 +00:00
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
|
|
|
const widget = {
|
|
api: "{url}/api/v4/{endpoint}",
|
|
proxyHandler: credentialedProxyHandler,
|
|
mappings: {
|
|
counts: {
|
|
endpoint: "users/{user_id}/associations_count",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|