-
Notifications
You must be signed in to change notification settings - Fork 122
Home
Phil Myers edited this page Jan 14, 2016
·
10 revisions
If you have have a general question that is not specific to the Module 1 content, it may have already been answered here.
A: Yes. Please refer to the grading policy here.
A: Make sure your create_user
method accepts a hash of params. Its method signature should look like this:
def create_user(params)
The method is called like this:
assignment.create_user(:username => "joesmith", :password_digest => "xxxx")
A: You can't pass params
to TodoList.create
as it is. The keys of params
are name
and due_date
. You need to use these to set the list_name
and list_due_date
of the TodoList
.