Add remote browser pages and website sync

Enable managed remote browser custom pages with login autofill and add website sync workflows so external admin surfaces can be handled inside SmartUp.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
liumangmang
2026-05-15 15:43:58 +08:00
parent a13a0070a5
commit 7adc7c00ab
43 changed files with 6615 additions and 641 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ from datetime import datetime
from typing import Optional, List
from pydantic import BaseModel
ALLOWED_EVENTS = ["upstream_rate_changed", "upstream_unhealthy", "upstream_recovered"]
ALLOWED_EVENTS = ["upstream_rate_changed", "website_rate_changed", "upstream_unhealthy", "upstream_recovered"]
class WebhookCreate(BaseModel):
@@ -11,7 +11,7 @@ class WebhookCreate(BaseModel):
url: str
secret: str = ""
enabled: bool = True
events: List[str] = ["upstream_rate_changed"]
events: List[str] = ["upstream_rate_changed", "website_rate_changed"]
class WebhookUpdate(BaseModel):