mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
* 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>
9 lines
210 B
Python
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)
|