mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
fa81d87dc0
* Updated documentation for the review endpoint * Updated documentation for the review/summary endpoint * Updated documentation for the review/summary endpoint * Documentation for the review activity audio and motion endpoints * Added responses for more review.py endpoints * Added responses for more review.py endpoints * Fixed review.py responses and proper path parameter names * Added body model for /reviews/viewed and /reviews/delete * Updated OpenAPI specification for the review controller endpoints * Run ruff format frigate * Drop significant_motion * Updated frigate-api.yaml * Deleted total_motion * Combine 2 models into generic
7 lines
233 B
Python
7 lines
233 B
Python
from pydantic import BaseModel, conlist, constr
|
|
|
|
|
|
class ReviewModifyMultipleBody(BaseModel):
|
|
# 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)
|