feat: preffered startup paths

This commit is contained in:
kodi
2026-03-12 14:47:39 +01:00
parent 559b881b6d
commit ed34d6202f
16 changed files with 644 additions and 13 deletions
+5 -1
View File
@@ -96,10 +96,14 @@ class FileInfoResponse(BaseModel):
class SettingsResponse(BaseModel):
show_thumbnails: bool
preferred_startup_path_left: str | None = None
preferred_startup_path_right: str | None = None
class SettingsUpdateRequest(BaseModel):
show_thumbnails: bool
show_thumbnails: bool | None = None
preferred_startup_path_left: str | None = None
preferred_startup_path_right: str | None = None
class TaskListItem(BaseModel):