mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-12 01:57:36 +03:00
new body param
This commit is contained in:
parent
09d00c5220
commit
da4f299986
@ -4,3 +4,5 @@ from pydantic import BaseModel, conlist, constr
|
|||||||
class ReviewModifyMultipleBody(BaseModel):
|
class ReviewModifyMultipleBody(BaseModel):
|
||||||
# List of string with at least one element and each element with at least one char
|
# List of string with at least one element and each element with at least one char
|
||||||
ids: conlist(constr(min_length=1), min_length=1)
|
ids: conlist(constr(min_length=1), min_length=1)
|
||||||
|
# Whether to mark items as reviewed (True) or unreviewed (False)
|
||||||
|
reviewed: bool = True
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user