v8.1.6: Add UDP listener checker functionality

Introduces the ability to enable or disable a checker service for UDP listeners. Includes UI updates, database migration, new API route, and backend logic to handle checker settings on UDP listeners.
This commit is contained in:
Aidaho
2025-02-19 10:49:07 +03:00
parent fc0ccb8f9c
commit f3f540c291
11 changed files with 113 additions and 5 deletions

View File

@@ -93,6 +93,7 @@ class UdpListenerRequest(BaseModel):
delay_loop: Optional[int] = 10
delay_before_retry: Optional[int] = 10
retry: Optional[int] = 3
is_checker: Optional[bool] = 0
class UserPost(BaseModel):