Hey I need to collect more info on email signup, i...
# help
l
Hey I need to collect more info on email signup, is that possible, I've got a table for user profiles with all the necessary columns and I was hoping I could send that info to the appropriate place when the user signs up but I know you can't add columns to the Auth table. what's the best way to setup my backend so I can collect a bunch of meta information (as text) that get's submitted on signup?
s
Yes you can do this by passing additional data with the signUp method, take a look at this thread where I outline how to do this https://discord.com/channels/839993398554656828/907991060054147123/907996664210530334
Note that in my example code I'm showing
signIn
, but in this case it should be
signUp
instead.
l
Thanks heaps @User !