mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-24 14:02:13 +08:00
14 lines
289 B
JavaScript
14 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;
|