TIST-31: Favorites model and ajax endpoint #23

Merged
steve_dekart merged 4 commits from TIST-31 into develop 2025-06-30 22:14:10 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 797d9fd334 - Show all commits

View File

@ -40,7 +40,7 @@ class FavoriteModel extends BaseModel
]
));
if(!$recipe)
return ['Recipe is not exists'];
return ['Recipe does not exist'];
return true;
}

View File

@ -50,7 +50,7 @@ class RecipeUserMenu extends BaseModel
]
));
if(!$recipe)
return ['Recipe is not exists'];
return ['Recipe does not exist'];
return true;
}