mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-09 01:13:10 -05:00
* add features to readme
* Copy markdown reference
* prop as whole recipe
* parameter as url instead of query
* add card styling to editor
* move images to /recipes/{slug}/images
* add image to breaking changes
* fix delete and import errors
* fix debug/about response
* logger updates
* dashboard ui
* add server side events
* unorganized routes
* default slot
* add backup viewer to dashboard
* format
* add dialog to backup imports
* initial event support
* delete assets when removed
Co-authored-by: hay-kot <hay-kot@pm.me>
11 lines
394 B
Python
11 lines
394 B
Python
from fastapi import APIRouter
|
|
from mealie.routes.recipe import all_recipe_routes, category_routes, recipe_crud_routes, recipe_media, tag_routes
|
|
|
|
router = APIRouter()
|
|
|
|
router.include_router(all_recipe_routes.router)
|
|
router.include_router(recipe_crud_routes.router)
|
|
router.include_router(recipe_media.router)
|
|
router.include_router(category_routes.router)
|
|
router.include_router(tag_routes.router)
|