Files
mealie/mealie/routes/site_settings/__init__.py
Hayden 9b1bf56a5d [Feat] Migrate from Pages to Cookbooks (#664)
* feat:  Add Description to Cookbooks

* feat(frontend):  Cookbook view page

* feat(frontend): 💄 Add final UI touches

* fix(backend): 🐛 Add get by slug or id

* fix linting issue

* test(backend):  Update tests from pages -> cookbooks

* refactor(backend): 🔥 Delete old page files

Co-authored-by: hay-kot <hay-kot@pm.me>
2021-08-31 18:51:34 -08:00

9 lines
210 B
Python

from fastapi import APIRouter
from . import site_settings
settings_router = APIRouter()
settings_router.include_router(site_settings.public_router)
settings_router.include_router(site_settings.admin_router)