Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialishakahmed
11,359 Points(5:12) Why do we have to say user.set_password(password)?
Why does kenneth type user.set_password(password) if set_password is a static method? Can't he say set_password(password). Or is he specifying 'user' because the interpreter needs to know where to look for the method?
1 Answer
Josh Keenan
20,315 PointsIt is calling it on this instance of user, or the user currently setting their password. It is setting the password for this given user as the request comes in.
ishakahmed
11,359 Pointsishakahmed
11,359 PointsCouldn't he just say HASHER.hash(password). I don't see why he created a static method for it. Unless he wants to hash a password more than once in the User model.
Josh Keenan
20,315 PointsJosh Keenan
20,315 PointsBecause you are doing it on an actual user, you have defined a
set_password
method, you need to use it to set the password for this user. Hashing is just encrypting the password, it isn't setting one. This is how a user can create, and save their password, and each user needs it so we need to call it when they ask to call it, we can't just have it in the DB and just hashing random stuff, hope this helps.