FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. lambert.torres
    3. Posts
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 10
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by lambert.torres

    • 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?

      posted in Q&A
      L
      lambert.torres
    • 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]
      
      posted in General Discussion
      L
      lambert.torres
    • RE: Email verification template

      @dan it looks like our staging instance is already licensed.
      Screenshot 2023-10-02 at 7.00.19 PM.png the server is in Development mode

      posted in General Discussion
      L
      lambert.torres
    • 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?

      posted in General Discussion
      L
      lambert.torres
    • Email verification template

      Hi,

      I've selected enter a short code to verify an email address but the email sent is the clickable link.Screenshot 2023-09-19 at 11.58.47 AM.png

      the copy in the email also is for the short code.
      Screenshot 2023-09-19 at 12.05.45 PM.png

      freemarker:

       [#if verificationOneTimeCode??]
                        <p class="code">${verificationOneTimeCode}</p>
                            [#else]
                            <p>
                              <a
                                href="${dashboardUrl}"
                                >${dashboardUrl}</a
                              >
                            </p>
      [/#if]
      

      anything we're mis-configuring?

      posted in General Discussion
      L
      lambert.torres
    • 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?

      posted in General Discussion
      L
      lambert.torres
    • 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" : [ "" ],
      
      posted in General Discussion
      L
      lambert.torres
    • 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

      posted in General Discussion
      L
      lambert.torres
    • 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.

      posted in General Discussion
      L
      lambert.torres
    • add to default group from registration

      Is it possible to add users to a default group when registering with a new account?

      posted in Q&A
      L
      lambert.torres