mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2026-02-22 05:23:31 +01:00
MAESTRO: align tests API response with selector
This commit is contained in:
@@ -1,7 +1,16 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
|
||||
from app.engine.models import Test
|
||||
|
||||
|
||||
class TestResponse(Test):
|
||||
pass
|
||||
|
||||
|
||||
class TestListResponse(BaseModel):
|
||||
model_config = ConfigDict(populate_by_name=True)
|
||||
|
||||
tests: list[TestResponse]
|
||||
total_count: int = Field(alias="totalCount")
|
||||
|
||||
Reference in New Issue
Block a user