Skip to content

Commit

Permalink
fix(eng-13): fix no auth strategy name (#2586)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpazuch authored Aug 28, 2023
1 parent bc28cf9 commit 2574ae3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ui/src/app/@core/core.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ export const NB_CORE_PROVIDERS = [
resetPass: {
endpoint: environment.resetPassUrl,
method: 'put',
redirect: {
success: '/auth/login',
failure: null
}
},
logout:
{ method: null, redirect: { success: '/', failure: '/' } },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class ResetPasswordComponent extends NbResetPasswordComponent {

showMessages: any = {};

strategy: string = '';
strategy: string = 'email';

submitted = false;

Expand Down

0 comments on commit 2574ae3

Please sign in to comment.