You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/lib/auth0.cfc
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -783,7 +783,7 @@ component {
783
783
784
784
if (arguments.oldGroupIDneq""andarguments.oldGroupIDneq"-none-") {
785
785
returnqueryExecute("
786
-
SELECT p.objectid as profileID, u.objectid as userID, p.emailAddress as email, p.firstName as given_name, p.lastName as family_name, p.label as name, u.userID as user_id, u.password as password_hash, case when userstatus = 'pending' then 'false' else 'true' end as email_verified
786
+
SELECT p.objectid as profileID, u.objectid as userID, p.emailAddress as email, p.firstName as given_name, p.lastName as family_name, p.label as name, u.userID as user_id, u.password as password_hash, case when u.userstatus = 'pending' then 'false' else 'true' end as email_verified
787
787
FROM farUser u
788
788
INNER JOIN dmProfile p ON concat(u.userID, '_CLIENTUD')=p.username
789
789
INNER JOIN farUser_aGroups ug ON u.objectid=ug.parentid AND ug.data=:groupID
@@ -795,7 +795,7 @@ component {
795
795
}
796
796
else {
797
797
returnqueryExecute("
798
-
SELECT p.objectid as profileID, u.objectid as userID, p.emailAddress as email, p.firstName as given_name, p.lastName as family_name, p.label as name, u.userID as user_id, u.password as password_hash, case when userstatus = 'pending' then 'false' else 'true' end as email_verified
798
+
SELECT p.objectid as profileID, u.objectid as userID, p.emailAddress as email, p.firstName as given_name, p.lastName as family_name, p.label as name, u.userID as user_id, u.password as password_hash, case when u.userstatus = 'pending' then 'false' else 'true' end as email_verified
799
799
FROM farUser u
800
800
INNER JOIN dmProfile p ON concat(u.userID, '_CLIENTUD')=p.username
801
801
WHERE u.userstatus IN ('active','pending') AND
@@ -828,7 +828,7 @@ component {
828
828
p.label as name,
829
829
u.userID as user_id,
830
830
u.password as password_hash,
831
-
case when userstatus = 'pending' then 'false' else 'true' end as email_verified
831
+
case when u.userstatus = 'pending' then 'false' else 'true' end as email_verified
832
832
FROM farUser u
833
833
INNER JOIN dmProfile p ON concat(u.userID, '_AUTH0') = p.username
0 commit comments