For testing purposes I want to re-create an account on my local instance of FusionAuth to match what's up in our staging enviornment. Is there a way to update the FA ID for a user? I'm trying to test a scenario with an integration that's passing back a userid from an integration
Best posts made by lambert.torres
-
update user id
Latest posts made by lambert.torres
-
Migration of Fusion Auth hosted (AWS) to GCP
Hi,
We want to migrate our instance of FusionAuth from AWS to GCP. We have migrated the container and the db. And tried starting it up and going to the homepage. It first said it was in silent mode but the perms were an issue. We've GRANT ALL for that account accessing the DB but still says missing permission. We set the silent mode to false. And the app complains about missing columns on tables in the DB (scim_enterprise_*). These columns exist on our local dev instances, but are not on our staging and prod db and function without isssue. Is there a way we can get prof services for this effort? We want to remain on this version of the app to have minimal effort as part of the migratio.
-
Resending email
Hi,
If our connection to sendgrid is off while we had emails sent for email verification. Is there a way we can resend those emails for newly registered users?
-
RE: Email verification template
@dan if you see above our freemarker is also similarly done. we've assigned the url for the link to dashboardurl for simplicity.
<h1>Verify your email</h1> <p>Use this temporary code to verify your email:</p> [#if verificationOneTimeCode??] <p class="code">${verificationOneTimeCode}</p> [#else] <p> <a href="${dashboardUrl}" >${dashboardUrl}</a > </p> [/#if]
-
RE: Email verification template
@dan it looks like our staging instance is already licensed.
the server is in Development mode
-
RE: Email verification template
@dan yes, we have this on our production environment. are you saying we need a license for our staging environment as well?
-
Email verification template
Hi,
I've selected enter a short code to verify an email address but the email sent is the clickable link.
the copy in the email also is for the short code.
freemarker:
[#if verificationOneTimeCode??] <p class="code">${verificationOneTimeCode}</p> [#else] <p> <a href="${dashboardUrl}" >${dashboardUrl}</a > </p> [/#if]
anything we're mis-configuring?
-
events to webhook
Hi,
We're currently using Fusion Auth 1.36.8. and when we update a user's group and subsequently submit a user update complete event. we should see a webhook triggered with their latest group. What we're sometimes seeing in the webhook response is the old group the user is in before adding them to the new group or the user in the 2 groups they're in before we remove them from the first group. Is there caching going on that we can override to guarantee the latest group changes a user is in?
-
all extended data are saved as arrays
Is there a way we can store profile data properties as strings vs. the arrays it's creating?
here is an example of what we're seeing.
"default_password_nag" : [ "" ], "description" : [ "" ], "dismissed_wp_pointers" : [ "vc_pointers_backend_editor" ], "facebook" : [ "" ],
-
update user id
For testing purposes I want to re-create an account on my local instance of FusionAuth to match what's up in our staging enviornment. Is there a way to update the FA ID for a user? I'm trying to test a scenario with an integration that's passing back a userid from an integration
-
remove user from all groups
Is there an api I can call that removes a user from all groups? I can see one that explicitly removes them from a particular group, but I'd like to remove them from all groups.