Created basis edit UI for nested recipes (references #77)

This commit is contained in:
Bernd Bestel
2018-10-23 19:36:39 +02:00
parent 57a0864465
commit 12a2cb0bdf
7 changed files with 305 additions and 55 deletions

View File

@@ -40,6 +40,7 @@ $app->group('', function()
$this->get('/recipes', '\Grocy\Controllers\RecipesController:Overview');
$this->get('/recipe/{recipeId}', '\Grocy\Controllers\RecipesController:RecipeEditForm');
$this->get('/recipe/{recipeId}/pos/{recipePosId}', '\Grocy\Controllers\RecipesController:RecipePosEditForm');
$this->get('/recipe/{recipeId}/included_recipe/{recipeIncludeId}', '\Grocy\Controllers\RecipesController:RecipeIncludeEditForm');
// Chore routes
$this->get('/choresoverview', '\Grocy\Controllers\ChoresController:Overview');