0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 14:39:45 -05:00

fix(backend): fix incorrect raise on users service.

This commit is contained in:
Andrey Antukh 2019-07-19 08:36:44 +00:00
parent c2815d15ed
commit 53e74ec5cd

View file

@ -54,7 +54,8 @@
(ex/raise :type :validation
:code ::email-already-exists))
(when (:val (sc/fetch-one conn sqlv2))
(ex/raise ::username-already-exists))))
(ex/raise :type :validation
:code ::username-already-exists))))
(defn- update-profile
[conn {:keys [id username email fullname metadata] :as params}]