mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
* add basic pre-commit file * add flake8 * add isort * add pep585-upgrade (typing upgrades) * use namespace for import * add mypy * update ci for backend * flake8 scope * fix version format * update makefile * disable strict option (temporary) * fix mypy issues * upgrade type hints (pre-commit) * add vscode typing check * add types to dev deps * remote container draft * update setup script * update compose version * run setup on create * dev containers update * remove unused pages * update setup tips * expose ports * Update pre-commit to include flask8-print (#1053) * Add in flake8-print to pre-commit * pin version of flake8-print * formatting * update getting strated docs * add mypy to pre-commit * purge .mypy_cache on clean * drop mypy Co-authored-by: zackbcom <zackbcom@users.noreply.github.com>
36 lines
656 B
Python
36 lines
656 B
Python
from datetime import datetime
|
|
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class BackupOptions(BaseModel):
|
|
recipes: bool = True
|
|
settings: bool = True
|
|
themes: bool = True
|
|
groups: bool = True
|
|
users: bool = True
|
|
notifications: bool = True
|
|
|
|
|
|
class ImportJob(BackupOptions):
|
|
name: str
|
|
force: bool = False
|
|
rebase: bool = False
|
|
|
|
|
|
class CreateBackup(BaseModel):
|
|
tag: Optional[str]
|
|
options: BackupOptions
|
|
templates: Optional[list[str]]
|
|
|
|
|
|
class BackupFile(BaseModel):
|
|
name: str
|
|
date: datetime
|
|
size: str
|
|
|
|
|
|
class AllBackups(BaseModel):
|
|
imports: list[BackupFile]
|
|
templates: list[str]
|