todo-mvc-auth-local
todo-mvc-auth-local copied to clipboard
added field to Todo model to keep deleted item in database, changed CSS to hide deleted items
Added a proper title to the views: index: todolist! login: login sign up: sign up todos: todolist! And added active port in the console.log of app.listen, to know in what...
5 I completed the challenge 5 I feel good about my code I didn't work on styling, focused on functionality.
Hey catch up crew! I adapted the code to work with the most recent module versions (up to June 6th 2023) because the code from Leon's repo doesn't work with...
Added the ability to generate a random fact to read if user wants to procrastinate a bit before getting started on their to-do list.
from ``` const conn = await mongoose.connect(process.env.DB_STRING, { useNewUrlParser: true, useUnifiedTopology: true, useFindAndModify: false, useCreateIndex: true }) ``` to ``` const conn = await mongoose.connect(process.env.DB_STRING, { useFindAndModify: false, useCreateIndex: true,...