mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-03 05:53:40 +01:00
19 lines
364 B
JavaScript
19 lines
364 B
JavaScript
import crowdsecProxyHandler from "./proxy";
|
|
|
|
const widget = {
|
|
api: "{url}/v1/{endpoint}",
|
|
loginURL: "{url}/v1/watchers/login",
|
|
proxyHandler: crowdsecProxyHandler,
|
|
|
|
mappings: {
|
|
alerts: {
|
|
endpoint: "alerts",
|
|
},
|
|
bans: {
|
|
endpoint: "alerts?decision_type=ban&origin=crowdsec&has_active_decision=1",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|