We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc6167f commit 32f5133Copy full SHA for 32f5133
packages/lib/auth0.cfc
@@ -211,7 +211,7 @@ component {
211
212
public any function listMFA(required string email) {
213
var token = getAuthToken();
214
- var auth0user = getUserByEmail(email)
+ var auth0user = getUserByEmail(arguments.email)
215
var result = {};
216
if (ArrayLen(auth0user) > 0) {
217
var userId = auth0user[1].user_id;
@@ -565,8 +565,8 @@ component {
565
566
public array function getUserGroups(required string userID) {
567
568
- if (!userID.startsWith("auth0|")) {
569
- userID = "auth0|" & userID;
+ if (!arguments.userID.startsWith("auth0|")) {
+ arguments.userID = "auth0|" & arguments.userID;
570
}
571
var result = makeRequest(
572
method = "GET",
0 commit comments