Best place to store user "settings"?
Is it bad practice to extend the user table with various settings? I want to add a default "org" so that org is always selected upon sign-in.
4 Replies
No, this is perfectly fine.
Would the best way to do this be just creating a custom plugin?
You can probably achieve this through hooks.
Just check once the user signs up, to then use the server auth instance and make them join that org.
ok I'll try that thanks