Hi all, Another quick question:
I want to add a user's email by default to a list:string in my db. So I did the following: db.table_settings.members.default = auth.user.email Obviously that didn't work. Sending table_settings to Crud generated a list with each of the elements being 1 character of the user's email. So what I did was the following: db.table_settings.members[0].default = auth.user.email But this returns an empty string in the form. What am I doing wrong?

