Hello,
My application has a special requirement: the user details contain some
values which should not be entered by the user, but automatically generated
by the system,
I am planning to add that information to the auth.settings.table_user_name.
In this case the field that I am adding is:
Field('org_id', 'integer', unique=True)
What I am planning is, once the user has registered, assign a computed
generated value to this field (I get the organization id from a list of
available IDs which is stored in another system). Then I need to update the
database with this information.
How can I hook into the registration process, without modifying much the
registration flow? I would like to leverage as much as possible from the
web2py user management process.
Thanks,
Daniel
--