Made my head hurt... but really great functionality.
It would be interesting to see this in conjunction with the offline app. It seems a whole client side application could persist and pull application updates from the main server when they are available. Potentially sync data, but really have everything live on the client indefinitely... making the web server a software distribution technology and data store rather than an application server technology. This would work wonders for scale.
I found that I still wanted my users to be able to update their username and email address. Because using user.authentications allows a user to be created without a password devise will complain when prompting to change the info as it requires a current_password.
I used this to allow someone that is logged in via an external auth provider to update without entering a password. You could disable the need for the current_password completely if desired.
First time posting... huge fan - I started with episode 1 and have learned a lot along the way. Thank you Ryan!
views/registrations/edit.html.erb
erb
<% if @user.password_required? %>
.... password fields ...
<% end %>
Made my head hurt... but really great functionality.
It would be interesting to see this in conjunction with the offline app. It seems a whole client side application could persist and pull application updates from the main server when they are available. Potentially sync data, but really have everything live on the client indefinitely... making the web server a software distribution technology and data store rather than an application server technology. This would work wonders for scale.
I found that I still wanted my users to be able to update their username and email address. Because using
user.authentications
allows a user to be created without a password devise will complain when prompting to change the info as it requires acurrent_password
.I used this to allow someone that is logged in via an external auth provider to update without entering a password. You could disable the need for the
current_password
completely if desired.First time posting... huge fan - I started with episode 1 and have learned a lot along the way. Thank you Ryan!
views/registrations/edit.html.erb
user.rb