-
Notifications
You must be signed in to change notification settings - Fork 49
Ports- Cloudy #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Ports- Cloudy #28
Conversation
Task ListWhat We're Looking For
Hi Cloudy! Good work on this project! You did a great job with doing the best practices for the code that you wrote. I'm really happy that you got all of the CRUD actions with the right RESTful routing and our best practices, with strong params, and proper redirecting. There one thing that was missing that I'd like to bring attention to:
It's OK to feel a little overwhelmed at this point, Rails is a lot! Make sure you're practicing vocabulary and reviewing how the theory of the request/response cycle and the MVC pattern connect to the actual code you're writing. |
| name: params['todo']['name'], | ||
| completion_date: params['todo']['completion_date'], | ||
| description: params['todo']['description'] | ||
| ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can now update this to @todo = Todo.new( todo_params )
Task List
Congratulations! You're submitting your assignment!
***pssssh- i tried
Comprehension Questions