- Finished CRUD methods of Variables, Ingredients, MetaSchools, pretty much everything except users ye

This commit is contained in:
Alexis
2020-06-08 20:25:05 +02:00
parent 48987b8349
commit dda9545b68
7 changed files with 395 additions and 4 deletions

View File

@@ -3,8 +3,9 @@ const Ingredient = {
"type": Object,
"properties": {
"name": { "type": "string" },
"description": { "type": "string" }
},
"required": ["name"]
"required": ["name", "description"]
}
module.exports = Ingredient