1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

support authBlocked message

This commit is contained in:
Kyle Spearrin
2019-04-18 10:11:04 -04:00
parent 2ded5228cb
commit b4200fba60
2 changed files with 4 additions and 1 deletions

2
jslib

Submodule jslib updated: 7b0bc41f88...bc43c68eb9

View File

@@ -101,6 +101,9 @@ export class AppComponent implements OnDestroy, OnInit {
case 'unlocked':
this.notificationsService.updateConnection(false);
break;
case 'authBlocked':
this.router.navigate(['/']);
break;
case 'logout':
this.logOut(!!message.expired);
break;