diff --git a/jtl-wafi-dashboard.py b/jtl-wafi-dashboard.py index c439227..b646529 100644 --- a/jtl-wafi-dashboard.py +++ b/jtl-wafi-dashboard.py @@ -947,7 +947,7 @@ async def approve_agent(agent_id: str, request: Request): async def activate_shop( request: Request, domain: str = Form(...), - bot_mode: str = Form("true"), + bot_mode: str = Form("false"), bot_rate_limit: int = Form(30), bot_ban_duration: int = Form(300), country_mode: str = Form("false"), @@ -1017,7 +1017,7 @@ async def deactivate_shop(request: Request, domain: str = Form(...)): @app.post("/api/shops/bulk-activate") async def bulk_activate( request: Request, - bot_mode: str = Form("true"), + bot_mode: str = Form("false"), bot_rate_limit: int = Form(30), bot_ban_duration: int = Form(300), country_mode: str = Form("false"), @@ -1402,7 +1402,7 @@ def get_dashboard_html() -> str:
- +