feat(api): fixed changed SearchSession payload schema

This commit is contained in:
Taha Yassine Kraiem 2022-05-18 20:02:09 +02:00
parent b2732eb9be
commit 254202ba85

View file

@ -638,6 +638,7 @@ class SessionsSearchPayloadSchema(_PaginatedSchema):
def transform_order(cls, values):
if values.get("order") is not None:
values["order"] = values["order"].upper()
return values
class Config:
alias_generator = attribute_to_camel_case