diff --git a/backend/src/app/services/mutations/profile.clj b/backend/src/app/services/mutations/profile.clj index efc2c1932e..ee8217979e 100644 --- a/backend/src/app/services/mutations/profile.clj +++ b/backend/src/app/services/mutations/profile.clj @@ -392,8 +392,9 @@ claims)) (defmethod process-token :auth - [conn claims] - claims) + [conn {:keys [profile-id] :as claims}] + (let [profile (profile/retrieve-profile conn profile-id)] + (assoc claims :profile profile))) (defmethod process-token :default [conn claims]