info on how to activate users and change roles in DB #177
JonLittleIT
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So since my emails are not sending with SES config I was able to activate users in db and change roles. here are the commands.
UPDATE user_account SET active = true WHERE user_id = '1d54d8da-6cf0-4ffc-90cc-93ffe5e0529a';
UPDATE user_account SET role_code = 'member' WHERE user_id = '1d54d8da-6cf0-4ffc-90nn-93dde5e0529a';
So if you have not gotten emails working you can use your own instance by activating new users on sign up with out email verification.
Beta Was this translation helpful? Give feedback.
All reactions