fix: clean migration, cross-team isolation test, and PUT field-set fix for target_lists
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -18,7 +18,7 @@ class TargetListCreate(BaseModel):
|
||||
class TargetListUpdate(BaseModel):
|
||||
name: Optional[str] = Field(None, min_length=1, max_length=255)
|
||||
description: Optional[str] = None
|
||||
targets: Optional[list[TargetEntry]] = None
|
||||
targets: Optional[list[TargetEntry]] = Field(None, min_length=1)
|
||||
|
||||
|
||||
class TargetListResponse(BaseModel):
|
||||
|
||||
Reference in New Issue
Block a user