reset ng-idle after authorization

1.2k Views Asked by At

ng-idle on my application works fine. But after timeout , I have a pop up that asks for user credentials again. So what is the way to reset ng-idle and start watching again after popup authentication?

2

There are 2 best solutions below

0
On

You need to add Idle.watch(); to your app

0
On

Once user types his credentials and clicks on submit for example code

<button (click)="submit()" label="submit"></button>

Inside submit() method, You can write idle.watch();

submit() {
    idle.watch();
  }