From a835350e0ff14f15124925df77c1368444245bc3 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Mon, 5 Jul 2021 08:39:22 +0530 Subject: Removed references to png images since they were not being used anyways. --- app/Controllers/Http/RecipeController.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'app') diff --git a/app/Controllers/Http/RecipeController.js b/app/Controllers/Http/RecipeController.js index 9bfd92e..9d58708 100644 --- a/app/Controllers/Http/RecipeController.js +++ b/app/Controllers/Http/RecipeController.js @@ -61,7 +61,6 @@ class RecipeController { name: 'required|string', id: 'required|unique:recipes,recipeId', author: 'required|accepted', - png: 'required|url', svg: 'required|url', }); if (validation.fails()) { @@ -108,7 +107,6 @@ class RecipeController { featured: false, version: '1.0.0', icons: { - png: data.png, svg: data.svg, }, }), -- cgit v1.2.3-54-g00ecf