Coverage for opt/mealie/lib/python3.12/site-packages/mealie/schema/recipe/recipe_settings.py: 100%
10 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-11-25 15:32 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-11-25 15:32 +0000
1from pydantic import ConfigDict 1a
3from mealie.schema._mealie import MealieModel 1a
6class RecipeSettings(MealieModel): 1a
7 public: bool = False 1a
8 show_nutrition: bool = False 1a
9 show_assets: bool = False 1a
10 landscape_view: bool = False 1a
11 disable_comments: bool = True 1a
12 locked: bool = False 1a
13 model_config = ConfigDict(from_attributes=True) 1a