mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
22 lines
432 B
JavaScript
22 lines
432 B
JavaScript
import crowdsecProxyHandler from "./proxy";
|
|
|
|
const widget = {
|
|
api: "{url}/v1/{endpoint}",
|
|
loginURL: "{url}/v1/watchers/login",
|
|
proxyHandler: crowdsecProxyHandler,
|
|
|
|
mappings: {
|
|
alerts: {
|
|
endpoint: "alerts",
|
|
},
|
|
alerts24h: {
|
|
endpoint: "alerts?limit=0&since=24h",
|
|
},
|
|
bans: {
|
|
endpoint: "alerts?decision_type=ban&origin=crowdsec&has_active_decision=1",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|