Skip to content

Commit

Permalink
fix(chore): changed the name of a function
Browse files Browse the repository at this point in the history
changed the name of a function

GH-142
  • Loading branch information
arpit1503khanna committed Nov 22, 2023
1 parent 5b68b5a commit 052acc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ export class LocalPasswordStrategyFactoryProvider
}
};
}
getLocalStrategyVerifierUndefinedRequest(
verifyFn: VerifyFunction.LocalPasswordFn,
) {
getDefaultLocalStrategy(verifyFn: VerifyFunction.LocalPasswordFn) {
return async (
username: string,
password: string,
Expand Down Expand Up @@ -105,7 +103,7 @@ export class LocalPasswordStrategyFactoryProvider
} else {
return new PassportLocal.Strategy(
// eslint-disable-next-line @typescript-eslint/no-misused-promises
this.getLocalStrategyVerifierUndefinedRequest(verifyFn),
this.getDefaultLocalStrategy(verifyFn),
);
}
}
Expand Down

0 comments on commit 052acc7

Please sign in to comment.