I'm using Janrain and I need to perform some actions post- registration, but the usual auth callbacks don't seem to be working. I'm running a very simple test function in my model:
db.define_table('user_data',Field('testfield')) auth.settings.register_onvalidation.append(lambda form:db.user_data.insert(testfield="test value")) I figure the problem may be because I've got the usual auth.settings.actions_disabled = ['register','change_password','request_reset_password'], so 'register' is never called. Is there a way round this?