wip introduce property is_saved

This commit is contained in:
lebaudantoine
2025-04-10 15:44:37 +02:00
parent 566b085ede
commit bc6bf73e71
+7
View File
@@ -576,6 +576,13 @@ class Recording(BaseModel):
RecordingStatusChoices.STOPPED,
}
@property
def is_saved(self) -> bool:
"""Wip"""
return self.status in {
RecordingStatusChoices.SAVED,
}
@property
def key(self):
"""Wip."""