From e240525a352705bc0307fc4f5bcfe286c2f2ebcc Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 20 Jan 2021 13:13:16 +0100 Subject: [PATCH] :bug: Avoid exception on insert duplicates on user invitations. --- backend/src/app/rpc/mutations/verify_token.clj | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/backend/src/app/rpc/mutations/verify_token.clj b/backend/src/app/rpc/mutations/verify_token.clj index 18d9190d0..357983a23 100644 --- a/backend/src/app/rpc/mutations/verify_token.clj +++ b/backend/src/app/rpc/mutations/verify_token.clj @@ -92,7 +92,10 @@ :profile-id member-id} (teams/role->params role)) claims (assoc claims :state :created)] - (db/insert! conn :team-profile-rel params) + + (db/insert! conn :team-profile-rel params + {:on-conflict-do-nothing true}) + (if (and (uuid? profile-id) (= member-id profile-id)) ;; If the current session is already matches the invited @@ -114,7 +117,7 @@ (assoc response :cookies (session/cookies session {:value id}))))}))) - ;; In this case, we waint until frontend app redirect user to + ;; In this case, we wait until frontend app redirect user to ;; registeration page, the user is correctly registered and the ;; register mutation call us again with the same token to finally ;; create the corresponding team-profile relation from the first