I am currently using auth.profile() for a form where users can update their information. I have an 'upload' field for images, and a computed field that creates a thumbnail of the previous field.
When the user hits 'save profile', auth.user is updated only for the original 'upload' field, not the computed field. Is there anyway to update the computed field for auth.user as well (while still using the form created by auth.profile)? --