+
+
Tasks
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/javascript/router.js b/app/javascript/router.js
index 20ad8ef..6facdee 100644
--- a/app/javascript/router.js
+++ b/app/javascript/router.js
@@ -20,6 +20,8 @@ import TheRecipeEditor from './components/TheRecipeEditor';
import TheRecipeCreator from './components/TheRecipeCreator';
import TheRecipeList from './components/TheRecipeList';
+import TheTaskListList from './components/TheTaskListList';
+
import TheUserCreator from './components/TheUserCreator';
import TheUserEditor from './components/TheUserEditor';
@@ -113,6 +115,11 @@ router.addRoutes(
name: "notes",
component: TheNotesList
},
+ {
+ path: "/tasks",
+ name: "task_lists",
+ component: TheTaskListList
+ },
{
path: "/logout",
name: "logout",
diff --git a/db/schema.rb b/db/schema.rb
index c5cc620..4d2cb55 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -83,7 +83,6 @@ ActiveRecord::Schema.define(version: 2018_08_27_215102) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.text "preparation"
- t.integer "recipe_as_ingredient_id"
t.index ["recipe_id"], name: "index_recipe_ingredients_on_recipe_id"
end