mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
16 lines
454 B
Python
16 lines
454 B
Python
|
from typing import Optional
|
||
|
|
||
|
from pydantic import Field
|
||
|
|
||
|
from .base import FrigateBaseModel
|
||
|
|
||
|
__all__ = ["NotificationConfig"]
|
||
|
|
||
|
|
||
|
class NotificationConfig(FrigateBaseModel):
|
||
|
enabled: bool = Field(default=False, title="Enable notifications")
|
||
|
email: Optional[str] = Field(default=None, title="Email required for push.")
|
||
|
enabled_in_config: Optional[bool] = Field(
|
||
|
default=None, title="Keep track of original state of notifications."
|
||
|
)
|