Add API call for adding products to shoppinglist

This commit is contained in:
Marc Ole Bulling
2019-08-30 09:21:11 +02:00
parent afa4165d1c
commit d4eb767f1b
4 changed files with 114 additions and 0 deletions

View File

@@ -169,6 +169,7 @@ $app->group('/api', function()
{
$this->post('/stock/shoppinglist/add-missing-products', '\Grocy\Controllers\StockApiController:AddMissingProductsToShoppingList');
$this->post('/stock/shoppinglist/clear', '\Grocy\Controllers\StockApiController:ClearShoppingList');
$this->post('/stock/shoppinglist/add-product', '\Grocy\Controllers\StockApiController:AddItemToShoppingList');
$this->post('/stock/shoppinglist/remove-product', '\Grocy\Controllers\StockApiController:RemoveItemFromShoppingList');
}