(no title)
WorkLifeBalance | 7 years ago
Let's say I want to develop a multi user todo and I've followed the examples and now have some Users who log in entering a password.
Someone points out that I shouldn't be storing passwords in plain text so I want to store them hashed.
Despite there being hints in the documentation that this is possible (migrations shows the password hashed), it's not clear how to carry out this kind of change.
A walkthrough of making a change would help convey the use case much better than just templates of "this incantation produces this output".
klageveen|7 years ago
CodesInChaos|7 years ago
People often copy from such tutorials and will then end up with insecure password storage.
WorkLifeBalance|7 years ago
/* 'Users': collection { 'Password': text }*/
How does the platform know to hash that? Is it looking for magic property names?
gcb0|7 years ago
I doubt they will ever care about any of that. a "side loaded application" will likely be the answer to most of those comments.
klageveen|7 years ago